2018-05-17 15:33:30 +08:00
|
|
|
package com.nis.domain;
|
|
|
|
|
|
2018-05-18 16:46:46 +08:00
|
|
|
import com.nis.domain.configuration.BaseCfg;
|
2018-05-17 15:33:30 +08:00
|
|
|
|
2018-05-18 16:46:46 +08:00
|
|
|
public class FunctionServiceDict extends BaseCfg<FunctionServiceDict> {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
private static final long serialVersionUID = 1453401375628742549L;
|
2018-05-17 15:33:30 +08:00
|
|
|
private Integer dictId;
|
|
|
|
|
private Integer functionId;
|
|
|
|
|
private Integer protocolId;
|
|
|
|
|
private Integer action;
|
|
|
|
|
private Integer serviceId;
|
|
|
|
|
private String serviceName;
|
|
|
|
|
private String serviceDesc;
|
2018-05-18 16:46:46 +08:00
|
|
|
private String actionCode;
|
2018-08-21 13:38:26 +08:00
|
|
|
private String regionCode;
|
2018-08-20 09:24:44 +08:00
|
|
|
|
2018-08-21 13:38:26 +08:00
|
|
|
public String getRegionCode() {
|
2018-08-20 09:24:44 +08:00
|
|
|
return regionCode;
|
|
|
|
|
}
|
2018-08-21 13:38:26 +08:00
|
|
|
public void setRegionCode(String regionCode) {
|
2018-08-20 09:24:44 +08:00
|
|
|
this.regionCode = regionCode;
|
|
|
|
|
}
|
2018-05-17 15:33:30 +08:00
|
|
|
public Integer getDictId() {
|
|
|
|
|
return dictId;
|
|
|
|
|
}
|
|
|
|
|
public void setDictId(Integer dictId) {
|
|
|
|
|
this.dictId = dictId;
|
|
|
|
|
}
|
|
|
|
|
public Integer getFunctionId() {
|
|
|
|
|
return functionId;
|
|
|
|
|
}
|
|
|
|
|
public void setFunctionId(Integer functionId) {
|
|
|
|
|
this.functionId = functionId;
|
|
|
|
|
}
|
|
|
|
|
public Integer getProtocolId() {
|
|
|
|
|
return protocolId;
|
|
|
|
|
}
|
|
|
|
|
public void setProtocolId(Integer protocolId) {
|
|
|
|
|
this.protocolId = protocolId;
|
|
|
|
|
}
|
|
|
|
|
public Integer getAction() {
|
|
|
|
|
return action;
|
|
|
|
|
}
|
|
|
|
|
public void setAction(Integer action) {
|
|
|
|
|
this.action = action;
|
|
|
|
|
}
|
|
|
|
|
public Integer getServiceId() {
|
|
|
|
|
return serviceId;
|
|
|
|
|
}
|
|
|
|
|
public void setServiceId(Integer serviceId) {
|
|
|
|
|
this.serviceId = serviceId;
|
|
|
|
|
}
|
|
|
|
|
public String getServiceName() {
|
|
|
|
|
return serviceName;
|
|
|
|
|
}
|
|
|
|
|
public void setServiceName(String serviceName) {
|
|
|
|
|
this.serviceName = serviceName;
|
|
|
|
|
}
|
|
|
|
|
public String getServiceDesc() {
|
|
|
|
|
return serviceDesc;
|
|
|
|
|
}
|
|
|
|
|
public void setServiceDesc(String serviceDesc) {
|
|
|
|
|
this.serviceDesc = serviceDesc;
|
|
|
|
|
}
|
|
|
|
|
public Integer getIsValid() {
|
|
|
|
|
return isValid;
|
|
|
|
|
}
|
|
|
|
|
public void setIsValid(Integer isValid) {
|
|
|
|
|
this.isValid = isValid;
|
|
|
|
|
}
|
2018-05-18 16:46:46 +08:00
|
|
|
|
|
|
|
|
public String getActionCode() {
|
|
|
|
|
return actionCode;
|
2018-05-17 15:33:30 +08:00
|
|
|
}
|
2018-05-18 16:46:46 +08:00
|
|
|
public void setActionCode(String actionCode) {
|
|
|
|
|
this.actionCode = actionCode;
|
2018-05-17 15:33:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|