214 lines
3.9 KiB
Java
214 lines
3.9 KiB
Java
|
|
/**
|
|||
|
|
*@Title: FunctionRegionDict.java
|
|||
|
|
*@Package com.nis.domain
|
|||
|
|
*@Description TODO
|
|||
|
|
*@author dell
|
|||
|
|
*@date 2018年5月17日 下午2:57:54
|
|||
|
|
*@version 版本号
|
|||
|
|
*/
|
|||
|
|
package com.nis.domain.function;
|
|||
|
|
|
|||
|
|
import java.util.Date;
|
|||
|
|
|
|||
|
|
import com.nis.domain.BaseEntity;
|
|||
|
|
import com.nis.domain.SysUser;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @ClassName: FunctionRegionDict.java
|
|||
|
|
* @Description: TODO
|
|||
|
|
* @author (dell)
|
|||
|
|
* @date 2018年5月17日 下午2:57:54
|
|||
|
|
* @version V1.0
|
|||
|
|
*/
|
|||
|
|
public class FunctionServiceDict extends BaseEntity<FunctionServiceDict> {
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
|||
|
|
*
|
|||
|
|
* @since 1.0.0
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
private static final long serialVersionUID = -1000395010820223752L;
|
|||
|
|
private Long dictId;
|
|||
|
|
private Integer functionId;
|
|||
|
|
private Integer protocolId;
|
|||
|
|
private Integer action;
|
|||
|
|
private Integer serviceId;
|
|||
|
|
private String serviceName;
|
|||
|
|
private String serviceDesc;
|
|||
|
|
private Integer isValid;
|
|||
|
|
private SysUser creator;
|
|||
|
|
private Date createTime;
|
|||
|
|
private SysUser editor;
|
|||
|
|
private Date editTime;
|
|||
|
|
/**
|
|||
|
|
* dictId
|
|||
|
|
* @return dictId
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public Long getDictId() {
|
|||
|
|
return dictId;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param dictId the dictId to set
|
|||
|
|
*/
|
|||
|
|
public void setDictId(Long dictId) {
|
|||
|
|
this.dictId = dictId;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* functionId
|
|||
|
|
* @return functionId
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public Integer getFunctionId() {
|
|||
|
|
return functionId;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param functionId the functionId to set
|
|||
|
|
*/
|
|||
|
|
public void setFunctionId(Integer functionId) {
|
|||
|
|
this.functionId = functionId;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* protocolId
|
|||
|
|
* @return protocolId
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public Integer getProtocolId() {
|
|||
|
|
return protocolId;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param protocolId the protocolId to set
|
|||
|
|
*/
|
|||
|
|
public void setProtocolId(Integer protocolId) {
|
|||
|
|
this.protocolId = protocolId;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* action
|
|||
|
|
* @return action
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public Integer getAction() {
|
|||
|
|
return action;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param action the action to set
|
|||
|
|
*/
|
|||
|
|
public void setAction(Integer action) {
|
|||
|
|
this.action = action;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* serviceId
|
|||
|
|
* @return serviceId
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public Integer getServiceId() {
|
|||
|
|
return serviceId;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param serviceId the serviceId to set
|
|||
|
|
*/
|
|||
|
|
public void setServiceId(Integer serviceId) {
|
|||
|
|
this.serviceId = serviceId;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* serviceName
|
|||
|
|
* @return serviceName
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public String getServiceName() {
|
|||
|
|
return serviceName;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param serviceName the serviceName to set
|
|||
|
|
*/
|
|||
|
|
public void setServiceName(String serviceName) {
|
|||
|
|
this.serviceName = serviceName;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* serviceDesc
|
|||
|
|
* @return serviceDesc
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public String getServiceDesc() {
|
|||
|
|
return serviceDesc;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param serviceDesc the serviceDesc to set
|
|||
|
|
*/
|
|||
|
|
public void setServiceDesc(String serviceDesc) {
|
|||
|
|
this.serviceDesc = serviceDesc;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* isValid
|
|||
|
|
* @return isValid
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public Integer getIsValid() {
|
|||
|
|
return isValid;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param isValid the isValid to set
|
|||
|
|
*/
|
|||
|
|
public void setIsValid(Integer isValid) {
|
|||
|
|
this.isValid = isValid;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* creator
|
|||
|
|
* @return creator
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public SysUser getCreator() {
|
|||
|
|
return creator;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param creator the creator to set
|
|||
|
|
*/
|
|||
|
|
public void setCreator(SysUser creator) {
|
|||
|
|
this.creator = creator;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* createTime
|
|||
|
|
* @return createTime
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public Date getCreateTime() {
|
|||
|
|
return createTime;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param createTime the createTime to set
|
|||
|
|
*/
|
|||
|
|
public void setCreateTime(Date createTime) {
|
|||
|
|
this.createTime = createTime;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* editor
|
|||
|
|
* @return editor
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public SysUser getEditor() {
|
|||
|
|
return editor;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param editor the editor to set
|
|||
|
|
*/
|
|||
|
|
public void setEditor(SysUser editor) {
|
|||
|
|
this.editor = editor;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* editTime
|
|||
|
|
* @return editTime
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
public Date getEditTime() {
|
|||
|
|
return editTime;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param editTime the editTime to set
|
|||
|
|
*/
|
|||
|
|
public void setEditTime(Date editTime) {
|
|||
|
|
this.editTime = editTime;
|
|||
|
|
}
|
|||
|
|
}
|