You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
610 B
22 lines
610 B
4 years ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'delivery_info.g.dart';
|
||
|
|
||
|
@JsonSerializable()
|
||
|
class DeliveryInfo {
|
||
|
bool dadaRegStatus;
|
||
|
String dadaSourceId;
|
||
|
bool dadaStatus;
|
||
|
bool dianwodaRegStatus;
|
||
|
bool dianwodaStatus;
|
||
|
bool meituanRegStatus;
|
||
|
bool meituanStatus;
|
||
|
|
||
|
DeliveryInfo({this.dadaRegStatus, this.dadaSourceId, this.dadaStatus, this.dianwodaRegStatus, this.dianwodaStatus, this.meituanRegStatus, this.meituanStatus});
|
||
|
|
||
|
factory DeliveryInfo.fromJson(Map<String, dynamic> json) => _$DeliveryInfoFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$DeliveryInfoToJson(this);
|
||
|
}
|
||
|
|