修复同步Ecology用户,status转换错误的问题(Gson类型转换对大小写敏感)
This commit is contained in:
parent
b1fcce806a
commit
62ca03c7f9
|
|
@ -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 + '\'' +
|
||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue