|
@@ -30,7 +30,7 @@ public class AppUserDto {
|
|
|
*/
|
|
|
private String createUnit;
|
|
|
|
|
|
- public AppUserDto(Long id, String phone, String name, String createUnit, String userType, Long fkId, String status, String auth, String authTime, Long loginCount, String lastLoginTime, Date createTime, String updateById, String updateByName, Date updateTime, Integer deleteStatus, String password) {
|
|
|
+ public AppUserDto(Long id, String phone, String name, String createUnit, Integer userType, Long fkId, String status, String auth, String authTime, Long loginCount, String lastLoginTime, Date createTime, String updateById, String updateByName, Date updateTime, Integer deleteStatus, String password) {
|
|
|
this.id = id;
|
|
|
this.phone = phone;
|
|
|
this.name = name;
|
|
@@ -61,7 +61,7 @@ public class AppUserDto {
|
|
|
/**
|
|
|
* 类型(1=边民,2=组长,3=商户,4=收购商,5=司机)
|
|
|
*/
|
|
|
- private String userType;
|
|
|
+ private Integer userType;
|
|
|
|
|
|
/**
|
|
|
* 外联id,user_type=1=>边民ID;user_type=3=>商户ID
|
|
@@ -127,7 +127,7 @@ public class AppUserDto {
|
|
|
public AppUserDto() {
|
|
|
}
|
|
|
|
|
|
- public AppUserDto(Long id, String phone, String name, String userType, Long fkId, String status, String auth, String authTime, Long loginCount, String lastLoginTime, Date createTime, String updateById, String updateByName, Date updateTime, Integer deleteStatus, String password) {
|
|
|
+ public AppUserDto(Long id, String phone, String name, Integer userType, Long fkId, String status, String auth, String authTime, Long loginCount, String lastLoginTime, Date createTime, String updateById, String updateByName, Date updateTime, Integer deleteStatus, String password) {
|
|
|
this.id = id;
|
|
|
this.phone = phone;
|
|
|
this.name = name;
|
|
@@ -170,11 +170,11 @@ public class AppUserDto {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
- public String getUserType() {
|
|
|
+ public Integer getUserType() {
|
|
|
return userType;
|
|
|
}
|
|
|
|
|
|
- public void setUserType(String userType) {
|
|
|
+ public void setUserType(Integer userType) {
|
|
|
this.userType = userType;
|
|
|
}
|
|
|
|