parent
86cfd241d3
commit
c232a1a0ca
@ -1,124 +1,27 @@
|
|||||||
class UserInfoModel {
|
class UserInfoModel {
|
||||||
int id;
|
int id;
|
||||||
String userName;
|
|
||||||
String pwd;
|
|
||||||
String actualName;
|
|
||||||
String tel;
|
|
||||||
int sex;
|
|
||||||
String userCode;
|
|
||||||
String birthday;
|
|
||||||
String email;
|
|
||||||
String idCard;
|
|
||||||
int organizationId;
|
|
||||||
String organizationIdPath;
|
|
||||||
int positionId;
|
|
||||||
String roleId;
|
String roleId;
|
||||||
int status;
|
|
||||||
int isDelete;
|
|
||||||
int createId;
|
|
||||||
String createDate;
|
|
||||||
int modifyId;
|
|
||||||
String modifyDate;
|
|
||||||
String lastLoginIp;
|
|
||||||
String lastLoginDate;
|
|
||||||
String nickName;
|
String nickName;
|
||||||
String code;
|
List<int> jurisdiction;
|
||||||
String codeSendDate;
|
|
||||||
int remake;
|
|
||||||
int reportTo;
|
|
||||||
String entryDate;
|
|
||||||
|
|
||||||
UserInfoModel(
|
UserInfoModel({this.id, this.roleId, this.nickName, this.jurisdiction});
|
||||||
{this.id,
|
|
||||||
this.userName,
|
|
||||||
this.pwd,
|
|
||||||
this.actualName,
|
|
||||||
this.tel,
|
|
||||||
this.sex,
|
|
||||||
this.userCode,
|
|
||||||
this.birthday,
|
|
||||||
this.email,
|
|
||||||
this.idCard,
|
|
||||||
this.organizationId,
|
|
||||||
this.organizationIdPath,
|
|
||||||
this.positionId,
|
|
||||||
this.roleId,
|
|
||||||
this.status,
|
|
||||||
this.isDelete,
|
|
||||||
this.createId,
|
|
||||||
this.createDate,
|
|
||||||
this.modifyId,
|
|
||||||
this.modifyDate,
|
|
||||||
this.lastLoginIp,
|
|
||||||
this.lastLoginDate,
|
|
||||||
this.nickName,
|
|
||||||
this.code,
|
|
||||||
this.codeSendDate,
|
|
||||||
this.remake,
|
|
||||||
this.reportTo,
|
|
||||||
this.entryDate});
|
|
||||||
|
|
||||||
UserInfoModel.fromJson(Map<String, dynamic> json) {
|
UserInfoModel.fromJson(Map<String, dynamic> json) {
|
||||||
id = json['id'];
|
id = json['id'];
|
||||||
userName = json['userName'];
|
|
||||||
pwd = json['pwd'];
|
|
||||||
actualName = json['actualName'];
|
|
||||||
tel = json['tel'];
|
|
||||||
sex = json['sex'];
|
|
||||||
userCode = json['userCode'];
|
|
||||||
birthday = json['birthday'];
|
|
||||||
email = json['email'];
|
|
||||||
idCard = json['idCard'];
|
|
||||||
organizationId = json['organizationId'];
|
|
||||||
organizationIdPath = json['organizationIdPath'];
|
|
||||||
positionId = json['positionId'];
|
|
||||||
roleId = json['roleId'];
|
roleId = json['roleId'];
|
||||||
status = json['status'];
|
|
||||||
isDelete = json['isDelete'];
|
|
||||||
createId = json['createId'];
|
|
||||||
createDate = json['createDate'];
|
|
||||||
modifyId = json['modifyId'];
|
|
||||||
modifyDate = json['modifyDate'];
|
|
||||||
lastLoginIp = json['lastLoginIp'];
|
|
||||||
lastLoginDate = json['lastLoginDate'];
|
|
||||||
nickName = json['nickName'];
|
nickName = json['nickName'];
|
||||||
code = json['code'];
|
if (json['jurisdiction'] != null)
|
||||||
codeSendDate = json['codeSendDate'];
|
jurisdiction = json['jurisdiction'].cast<int>();
|
||||||
remake = json['remake'];
|
else
|
||||||
reportTo = json['reportTo'];
|
json['jurisdiction'] = [];
|
||||||
entryDate = json['entryDate'];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Map<String, dynamic> toJson() {
|
Map<String, dynamic> toJson() {
|
||||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
data['id'] = this.id;
|
data['id'] = this.id;
|
||||||
data['userName'] = this.userName;
|
|
||||||
data['pwd'] = this.pwd;
|
|
||||||
data['actualName'] = this.actualName;
|
|
||||||
data['tel'] = this.tel;
|
|
||||||
data['sex'] = this.sex;
|
|
||||||
data['userCode'] = this.userCode;
|
|
||||||
data['birthday'] = this.birthday;
|
|
||||||
data['email'] = this.email;
|
|
||||||
data['idCard'] = this.idCard;
|
|
||||||
data['organizationId'] = this.organizationId;
|
|
||||||
data['organizationIdPath'] = this.organizationIdPath;
|
|
||||||
data['positionId'] = this.positionId;
|
|
||||||
data['roleId'] = this.roleId;
|
data['roleId'] = this.roleId;
|
||||||
data['status'] = this.status;
|
|
||||||
data['isDelete'] = this.isDelete;
|
|
||||||
data['createId'] = this.createId;
|
|
||||||
data['createDate'] = this.createDate;
|
|
||||||
data['modifyId'] = this.modifyId;
|
|
||||||
data['modifyDate'] = this.modifyDate;
|
|
||||||
data['lastLoginIp'] = this.lastLoginIp;
|
|
||||||
data['lastLoginDate'] = this.lastLoginDate;
|
|
||||||
data['nickName'] = this.nickName;
|
data['nickName'] = this.nickName;
|
||||||
data['code'] = this.code;
|
data['jurisdiction'] = this.jurisdiction;
|
||||||
data['codeSendDate'] = this.codeSendDate;
|
|
||||||
data['remake'] = this.remake;
|
|
||||||
data['reportTo'] = this.reportTo;
|
|
||||||
data['entryDate'] = this.entryDate;
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue