Commit 0eee84cf by guojuxing

dto和实体转换修复

parent 77c224f8
......@@ -19,7 +19,7 @@ public class RoleListDTO implements Serializable{
/**
* 管理员角色名称
*/
private Integer roleName;
private String roleName;
/**
* 授权管理员数量
......@@ -34,11 +34,11 @@ public class RoleListDTO implements Serializable{
this.roleId = roleId;
}
public Integer getRoleName() {
public String getRoleName() {
return roleName;
}
public void setRoleName(Integer roleName) {
public void setRoleName(String roleName) {
this.roleName = roleName;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment