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.
34 lines
783 B
34 lines
783 B
10 months ago
|
import 'package:huixiang/generated/json/base/json_field.dart';
|
||
|
import 'package:huixiang/generated/json/exchange_order_goods.g.dart';
|
||
|
|
||
|
@JsonSerializable()
|
||
|
class ExchangeOrderGoods {
|
||
|
ExchangeOrderGoods();
|
||
|
|
||
|
String? id;
|
||
|
String? createTime;
|
||
|
String? createUser;
|
||
|
String? updateTime;
|
||
|
String? updateUser;
|
||
|
String? orderId;
|
||
|
String? goodsId;
|
||
|
String? categoryId;
|
||
|
String? name;
|
||
|
String? description;
|
||
|
String? worth;
|
||
|
String? price;
|
||
|
String? money;
|
||
|
String? couponId;
|
||
|
bool? canPick;
|
||
|
bool? canDelivery;
|
||
|
String? goodsMainImg;
|
||
|
String? goodsViceImg;
|
||
|
int? goodsNumber;
|
||
|
int? isDelete;
|
||
|
|
||
|
factory ExchangeOrderGoods.fromJson(Map<String, dynamic> json) =>
|
||
|
$ExchangeOrderGoodsFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => $ExchangeOrderGoodsToJson(this);
|
||
|
}
|