修复同步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 mobile;
String email; String email;
String sex; String sex;
String Status; String status;
public String getSubcompanyid1() { public String getSubcompanyid1() {
return subcompanyid1; return subcompanyid1;
@ -85,11 +85,11 @@ public class EcologyUser {
} }
public String getStatus() { public String getStatus() {
return Status; return status;
} }
public void setStatus(String status) { public void setStatus(String status) {
Status = status; this.status = status;
} }
@Override @Override
@ -104,7 +104,7 @@ public class EcologyUser {
", mobile='" + mobile + '\'' + ", mobile='" + mobile + '\'' +
", email='" + email + '\'' + ", email='" + email + '\'' +
", sex='" + sex + '\'' + ", sex='" + sex + '\'' +
", Status='" + Status + '\'' + ", status='" + status + '\'' +
'}'; '}';
} }
} }