1、配置操作tag增加修改操作;2、音视频文件样例配置列表、表单界面、新增、修改功能涉及到functionService与functionRegion字典使用部分提交。

This commit is contained in:
zhangwei
2018-05-18 16:46:46 +08:00
parent ecb332df64
commit bee5dd6c05
22 changed files with 1684 additions and 594 deletions

View File

@@ -1,8 +1,13 @@
package com.nis.domain;
import java.util.Date;
import com.nis.domain.configuration.BaseCfg;
public class FunctionServiceDict {
public class FunctionServiceDict extends BaseCfg<FunctionServiceDict> {
/**
*
*/
private static final long serialVersionUID = 1453401375628742549L;
private Integer dictId;
private Integer functionId;
private Integer protocolId;
@@ -10,11 +15,7 @@ public class FunctionServiceDict {
private Integer serviceId;
private String serviceName;
private String serviceDesc;
private Integer isValid;
private Integer creatorId;
private Date creatTime;
private Integer editorId;
private Date editTime;
private String actionCode;
public Integer getDictId() {
return dictId;
}
@@ -63,29 +64,12 @@ public class FunctionServiceDict {
public void setIsValid(Integer isValid) {
this.isValid = isValid;
}
public Integer getCreatorId() {
return creatorId;
public String getActionCode() {
return actionCode;
}
public void setCreatorId(Integer creatorId) {
this.creatorId = creatorId;
}
public Date getCreatTime() {
return creatTime;
}
public void setCreatTime(Date creatTime) {
this.creatTime = creatTime;
}
public Integer getEditorId() {
return editorId;
}
public void setEditorId(Integer editorId) {
this.editorId = editorId;
}
public Date getEditTime() {
return editTime;
}
public void setEditTime(Date editTime) {
this.editTime = editTime;
public void setActionCode(String actionCode) {
this.actionCode = actionCode;
}
}