package cn.com.lzt.common.dto; import java.io.Serializable; public class RoleUserDto implements Serializable { private static final long serialVersionUID = -423854527360509367L; private String ruid; private String roleid; private String userid; private String rolecode; private String rolename; private String self_roleweight_code; private String visible_roleweight_code; public RoleUserDto() { super(); } public RoleUserDto(String userid, String roleid, String self_roleweight_code) { super(); this.userid = userid; this.roleid = roleid; this.self_roleweight_code = self_roleweight_code; } public RoleUserDto(String ruid, String roleid, String userid, String rolecode, String rolename, String self_roleweight_code, String visible_roleweight_code) { super(); this.ruid = ruid; this.roleid = roleid; this.userid = userid; this.rolecode = rolecode; this.rolename = rolename; this.self_roleweight_code = self_roleweight_code; this.visible_roleweight_code = visible_roleweight_code; } public String getRuid() { return ruid; } public void setRuid(String ruid) { this.ruid = ruid; } public String getRoleid() { return roleid; } public void setRoleid(String roleid) { this.roleid = roleid; } public String getUserid() { return userid; } public void setUserid(String userid) { this.userid = userid; } public String getRolecode() { return rolecode; } public void setRolecode(String rolecode) { this.rolecode = rolecode; } public String getRolename() { return rolename; } public void setRolename(String rolename) { this.rolename = rolename; } public String getSelf_roleweight_code() { return self_roleweight_code; } public void setSelf_roleweight_code(String self_roleweight_code) { this.self_roleweight_code = self_roleweight_code; } public String getVisible_roleweight_code() { return visible_roleweight_code; } public void setVisible_roleweight_code(String visible_roleweight_code) { this.visible_roleweight_code = visible_roleweight_code; } @Override public String toString() { String str = "[ruid:" + this.ruid + ", " + "roleid:" + this.roleid + ", " + "userid:" + this.userid + ", " + "rolecode:" + this.rolecode + ", " + "rolename:" + this.rolename + ", " + "self_roleweight_code:" + this.self_roleweight_code + ", " + "visible_roleweight_code:" + this.visible_roleweight_code + "]"; return str; } }