📄 groupmodel.java
字号:
package com.gs.component.sysadmin.model;
public class GroupModel
implements java.io.Serializable {
private String groupID;
private String groupName;
private String userID;
private String userName;
public GroupModel() {
}
public GroupModel(String groupID, String groupName) {
this.groupID = groupID;
this.groupName = groupName;
}
public GroupModel(String groupID, String groupName, String userID,
String userName) {
this.userID = userID;
this.userName = userName;
}
public String getGroupID() {
return this.groupID;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupID(String groupID) {
this.groupID = groupID;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getUserID() {
return this.userID;
}
public String getUserName() {
return this.userName;
}
public void setUserID(String userID) {
this.userID = userID;
}
public void setUserName(String userName) {
this.userName = userName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -