📄 group.java
字号:
package com.italk.vo;
// default package
import java.util.HashSet;
import java.util.Set;
/**
* Group generated by MyEclipse - Hibernate Tools
*/
public class Group extends BaseEntity{
// Fields
private String description;
private Boolean canLock;
private Boolean canTop;
private Boolean canPrime;
private Boolean canLogon;
private Boolean canPublish;
private Boolean canReply;
private String groupName;
private Boolean canDelete;
private Set users = new HashSet(0);
// Constructors
/** default constructor */
public Group() {
}
/** minimal constructor */
public Group(Boolean canLock, Boolean canTop, Boolean canPrime, Boolean canLogon, Boolean canPublish, Boolean canReply, String groupName, Boolean canDelete) {
this.canLock = canLock;
this.canTop = canTop;
this.canPrime = canPrime;
this.canLogon = canLogon;
this.canPublish = canPublish;
this.canReply = canReply;
this.groupName = groupName;
this.canDelete = canDelete;
}
/** full constructor */
public Group(String description, Boolean canLock, Boolean canTop, Boolean canPrime, Boolean canLogon, Boolean canPublish, Boolean canReply, String groupName, Boolean canDelete, Set users) {
this.description = description;
this.canLock = canLock;
this.canTop = canTop;
this.canPrime = canPrime;
this.canLogon = canLogon;
this.canPublish = canPublish;
this.canReply = canReply;
this.groupName = groupName;
this.canDelete = canDelete;
this.users = users;
}
// Property accessors
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Boolean getCanLock() {
return this.canLock;
}
public void setCanLock(Boolean canLock) {
this.canLock = canLock;
}
public Boolean getCanTop() {
return this.canTop;
}
public void setCanTop(Boolean canTop) {
this.canTop = canTop;
}
public Boolean getCanPrime() {
return this.canPrime;
}
public void setCanPrime(Boolean canPrime) {
this.canPrime = canPrime;
}
public Boolean getCanLogon() {
return this.canLogon;
}
public void setCanLogon(Boolean canLogon) {
this.canLogon = canLogon;
}
public Boolean getCanPublish() {
return this.canPublish;
}
public void setCanPublish(Boolean canPublish) {
this.canPublish = canPublish;
}
public Boolean getCanReply() {
return this.canReply;
}
public void setCanReply(Boolean canReply) {
this.canReply = canReply;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public Boolean getCanDelete() {
return this.canDelete;
}
public void setCanDelete(Boolean canDelete) {
this.canDelete = canDelete;
}
public Set getUsers() {
return this.users;
}
public void setUsers(Set users) {
this.users = users;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -