package com.inks.hb.authinfo.pojo;
/**
* AuthInfo对象对应数据库中的authInfo表,主键为authID。
*/
public class AuthInfo {
private int authId; //权限ID
private String authItem; //权限名称
private String isRead; //可读
private String isWrite; //可写
private String isChange; //可改
private String isDelete; //可删
public AuthInfo() {
super();
}
public AuthInfo(int authId, String authItem, String isRead, String isWrite, String isChange, String isDelete) {
this.authId = authId;
this.authItem = authItem;
this.isRead = isRead;
this.isWrite = isWrite;
this.isChange = isChange;
this.isDelete = isDelete;
}
public int getAuthId() {
return authId;
}
public void setAuthId(int authId) {
this.authId = authId;
}
public String getAuthItem() {
return authItem;
}
public void setAuthItem(String authItem) {
this.authItem = authItem;
}
public String getIsRead() {
return isRead;
}
public void setIsRead(String isRead) {
this.isRead = isRead;
}
public String getIsWrite() {
return isWrite;
}
public void setIsWrite(String isWrite) {
this.isWrite = isWrite;
}
public String getIsChange() {
return isChange;
}
public void setIsChange(String isChange) {
this.isChange = isChange;
}
public String getIsDelete() {
return isDelete;
}
public void setIsDelete(String idDelete) {
this.isDelete = idDelete;
}
@Override
public String toString() {
return "\n--->AuthInfo对象信息输出:" +
"\n authId = " + authId +
"\n authItem = '" + authItem + '\'' +
"\n isRead = '" + isRead + '\'' +
"\n isWrite = '" + isWrite + '\'' +
"\n isChange = " + isChange +
"\n idDelete = " + isDelete +
"\n--->AuthInfo信息输出结束\n";
}
}
最近下载更多
李朝磊 LV18
2024年12月25日
微信网友_7298640909209600 LV2
2024年12月16日
zolscy LV24
2024年11月25日
15953970869 LV6
2024年11月9日
张泽帅 LV6
2024年10月18日
angaochong LV5
2024年10月10日
半夏bx LV16
2024年9月24日
864216741 LV2
2024年8月25日
odasdas LV1
2024年6月23日
赵鑫cdsaljkdfsa LV11
2024年6月18日
最近浏览更多
1271247100 LV9
11月21日
yigu123 LV6
10月22日
李朝磊 LV18
2024年12月25日
拜托你仔细听 LV3
2024年12月23日
2602275348 LV12
2024年12月19日
微信网友_7298641941385216 LV1
2024年12月16日
微信网友_7298640909209600 LV2
2024年12月16日
sjwc88 LV4
2024年12月13日
微信网友_7290996505972736 LV4
2024年12月11日
lilina LV1
2024年12月9日

