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.
aku_new_community/lib/ui/market/search/settlementGoodsDTO.dart

23 lines
454 B

class SettlementGoodsDTO {
int? jcookGoodsId;
int? num;
SettlementGoodsDTO({
this.jcookGoodsId,
this.num,
});
SettlementGoodsDTO.fromJson(Map<String, dynamic> json) {
jcookGoodsId = json['jcookGoodsId'];
num = json['num'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['jcookGoodsId'] = this.jcookGoodsId;
data['num'] = this.num;
return data;
}
}