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.
53 lines
2.0 KiB
53 lines
2.0 KiB
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'exchange_order_goods.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
ExchangeOrderGoods _$ExchangeOrderGoodsFromJson(Map<String, dynamic> json) { |
|
return ExchangeOrderGoods() |
|
..id = json['id'] as String |
|
..createTime = json['createTime'] as String |
|
..createUser = json['createUser'] as String |
|
..updateTime = json['updateTime'] as String |
|
..updateUser = json['updateUser'] as String |
|
..orderId = json['orderId'] as String |
|
..goodsId = json['goodsId'] as String |
|
..categoryId = json['categoryId'] as String |
|
..name = json['name'] as String |
|
..description = json['description'] as String |
|
..worth = json['worth'] as String |
|
..price = json['price'] as String |
|
..couponId = json['couponId'] as String |
|
..canPick = json['canPick'] as bool |
|
..canDelivery = json['canDelivery'] as bool |
|
..goodsMainImg = json['goodsMainImg'] as String |
|
..goodsViceImg = json['goodsViceImg'] as String |
|
..goodsNumber = json['goodsNumber'] as int |
|
..isDelete = json['isDelete'] as int; |
|
} |
|
|
|
Map<String, dynamic> _$ExchangeOrderGoodsToJson(ExchangeOrderGoods instance) => |
|
<String, dynamic>{ |
|
'id': instance.id, |
|
'createTime': instance.createTime, |
|
'createUser': instance.createUser, |
|
'updateTime': instance.updateTime, |
|
'updateUser': instance.updateUser, |
|
'orderId': instance.orderId, |
|
'goodsId': instance.goodsId, |
|
'categoryId': instance.categoryId, |
|
'name': instance.name, |
|
'description': instance.description, |
|
'worth': instance.worth, |
|
'price': instance.price, |
|
'couponId': instance.couponId, |
|
'canPick': instance.canPick, |
|
'canDelivery': instance.canDelivery, |
|
'goodsMainImg': instance.goodsMainImg, |
|
'goodsViceImg': instance.goodsViceImg, |
|
'goodsNumber': instance.goodsNumber, |
|
'isDelete': instance.isDelete, |
|
};
|
|
|