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
466 B

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