📄 abstractfunctions.java
字号:
package com.sunwah.baseapp.system.model;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractFunctions entity provides the base persistence definition of the
* Functions entity.
*
* @author MyEclipse Persistence Tools
*/
public abstract class AbstractFunctions implements java.io.Serializable {
// Fields
private Long functionId;
private Long parentFuncId;
private String functionCode;
private String functionName;
private String assemblyName;
private String functionLevel;
private Long ordering;
private String functionType;
private String state;
private Long createUserId;
private Date createDate;
private Long modifyUserId;
private Date modifyDate;
private String remark;
private Set roleFunctions = new HashSet(0);
// Constructors
/** default constructor */
public AbstractFunctions() {
}
/** minimal constructor */
public AbstractFunctions(Long parentFuncId, String functionCode,
String functionName, String functionLevel, Long ordering,
String functionType, String state, Long createUserId,
Date createDate, Long modifyUserId, Date modifyDate) {
this.parentFuncId = parentFuncId;
this.functionCode = functionCode;
this.functionName = functionName;
this.functionLevel = functionLevel;
this.ordering = ordering;
this.functionType = functionType;
this.state = state;
this.createUserId = createUserId;
this.createDate = createDate;
this.modifyUserId = modifyUserId;
this.modifyDate = modifyDate;
}
/** full constructor */
public AbstractFunctions(Long parentFuncId, String functionCode,
String functionName, String assemblyName, String functionLevel,
Long ordering, String functionType, String state, Long createUserId,
Date createDate, Long modifyUserId, Date modifyDate, String remark,
Set roleFunctions) {
this.parentFuncId = parentFuncId;
this.functionCode = functionCode;
this.functionName = functionName;
this.assemblyName = assemblyName;
this.functionLevel = functionLevel;
this.ordering = ordering;
this.functionType = functionType;
this.state = state;
this.createUserId = createUserId;
this.createDate = createDate;
this.modifyUserId = modifyUserId;
this.modifyDate = modifyDate;
this.remark = remark;
this.roleFunctions = roleFunctions;
}
// Property accessors
public Long getFunctionId() {
return this.functionId;
}
public void setFunctionId(Long functionId) {
this.functionId = functionId;
}
public Long getParentFuncId() {
return this.parentFuncId;
}
public void setParentFuncId(Long parentFuncId) {
this.parentFuncId = parentFuncId;
}
public String getFunctionCode() {
return this.functionCode;
}
public void setFunctionCode(String functionCode) {
this.functionCode = functionCode;
}
public String getFunctionName() {
return this.functionName;
}
public void setFunctionName(String functionName) {
this.functionName = functionName;
}
public String getAssemblyName() {
return this.assemblyName;
}
public void setAssemblyName(String assemblyName) {
this.assemblyName = assemblyName;
}
public String getFunctionLevel() {
return this.functionLevel;
}
public void setFunctionLevel(String functionLevel) {
this.functionLevel = functionLevel;
}
public Long getOrdering() {
return this.ordering;
}
public void setOrdering(Long ordering) {
this.ordering = ordering;
}
public String getFunctionType() {
return this.functionType;
}
public void setFunctionType(String functionType) {
this.functionType = functionType;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public Long getCreateUserId() {
return this.createUserId;
}
public void setCreateUserId(Long createUserId) {
this.createUserId = createUserId;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public Long getModifyUserId() {
return this.modifyUserId;
}
public void setModifyUserId(Long modifyUserId) {
this.modifyUserId = modifyUserId;
}
public Date getModifyDate() {
return this.modifyDate;
}
public void setModifyDate(Date modifyDate) {
this.modifyDate = modifyDate;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Set getRoleFunctions() {
return this.roleFunctions;
}
public void setRoleFunctions(Set roleFunctions) {
this.roleFunctions = roleFunctions;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -