修复同步Ecology用户,status转换错误的问题(Gson类型转换对大小写敏感)

This commit is contained in:
bo.yang 2021-07-16 09:33:42 +08:00
parent b1fcce806a
commit 62ca03c7f9
1 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ public class EcologyUser {
String mobile;
String email;
String sex;
String Status;
String status;
public String getSubcompanyid1() {
return subcompanyid1;
@ -85,11 +85,11 @@ public class EcologyUser {
}
public String getStatus() {
return Status;
return status;
}
public void setStatus(String status) {
Status = status;
this.status = status;
}
@Override
@ -104,7 +104,7 @@ public class EcologyUser {
", mobile='" + mobile + '\'' +
", email='" + email + '\'' +
", sex='" + sex + '\'' +
", Status='" + Status + '\'' +
", status='" + status + '\'' +
'}';
}
}