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.
23 lines
466 B
23 lines
466 B
class SettlementGoodsDTO {
|
|
int? appGoodsPushId;
|
|
int? num;
|
|
|
|
SettlementGoodsDTO({
|
|
this.appGoodsPushId,
|
|
this.num,
|
|
});
|
|
|
|
SettlementGoodsDTO.fromJson(Map<String, dynamic> json) {
|
|
appGoodsPushId = json['appGoodsPushId'];
|
|
num = json['num'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['appGoodsPushId'] = this.appGoodsPushId;
|
|
data['num'] = this.num;
|
|
|
|
return data;
|
|
}
|
|
}
|