* 'master' of 192.168.2.201:laiiihz/akuCommunity: add 批量删除 对接接口:物品出户二维码 对接接口:查询物品出户信息hmxc
commit
3fe6b31e18
@ -0,0 +1,51 @@
|
|||||||
|
class ArticleQRModel {
|
||||||
|
AppArticleOutQRCodeVo appArticleOutQRCodeVo;
|
||||||
|
String message;
|
||||||
|
bool status;
|
||||||
|
|
||||||
|
ArticleQRModel({this.appArticleOutQRCodeVo, this.message, this.status});
|
||||||
|
|
||||||
|
ArticleQRModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
appArticleOutQRCodeVo = json['appArticleOutQRCodeVo'] != null
|
||||||
|
? new AppArticleOutQRCodeVo.fromJson(json['appArticleOutQRCodeVo'])
|
||||||
|
: null;
|
||||||
|
message = json['message'];
|
||||||
|
status = json['status'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
if (this.appArticleOutQRCodeVo != null) {
|
||||||
|
data['appArticleOutQRCodeVo'] = this.appArticleOutQRCodeVo.toJson();
|
||||||
|
}
|
||||||
|
data['message'] = this.message;
|
||||||
|
data['status'] = this.status;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AppArticleOutQRCodeVo {
|
||||||
|
int id;
|
||||||
|
int residentId;
|
||||||
|
String residentName;
|
||||||
|
String effectiveTime;
|
||||||
|
|
||||||
|
AppArticleOutQRCodeVo(
|
||||||
|
{this.id, this.residentId, this.residentName, this.effectiveTime});
|
||||||
|
|
||||||
|
AppArticleOutQRCodeVo.fromJson(Map<String, dynamic> json) {
|
||||||
|
id = json['id'];
|
||||||
|
residentId = json['residentId'];
|
||||||
|
residentName = json['residentName'];
|
||||||
|
effectiveTime = json['effectiveTime'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['id'] = this.id;
|
||||||
|
data['residentId'] = this.residentId;
|
||||||
|
data['residentName'] = this.residentName;
|
||||||
|
data['effectiveTime'] = this.effectiveTime;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue