1、配置操作tag增加修改操作;2、音视频文件样例配置列表、表单界面、新增、修改功能涉及到functionService与functionRegion字典使用部分提交。
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package com.nis.domain.configuration;
|
||||
|
||||
public class AvFileSampleCfg extends BaseCfg<AvFileSampleCfg> {
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -2356472662189941874L;
|
||||
private String srcUrl;
|
||||
private String sampleUrl;
|
||||
private String srcMd5;
|
||||
private String sampleMd5;
|
||||
private Integer level;
|
||||
|
||||
public String getSrcUrl() {
|
||||
return srcUrl;
|
||||
}
|
||||
public void setSrcUrl(String srcUrl) {
|
||||
this.srcUrl = srcUrl;
|
||||
}
|
||||
public String getSampleUrl() {
|
||||
return sampleUrl;
|
||||
}
|
||||
public void setSampleUrl(String sampleUrl) {
|
||||
this.sampleUrl = sampleUrl;
|
||||
}
|
||||
public String getSrcMd5() {
|
||||
return srcMd5;
|
||||
}
|
||||
public void setSrcMd5(String srcMd5) {
|
||||
this.srcMd5 = srcMd5;
|
||||
}
|
||||
public String getSampleMd5() {
|
||||
return sampleMd5;
|
||||
}
|
||||
public void setSampleMd5(String sampleMd5) {
|
||||
this.sampleMd5 = sampleMd5;
|
||||
}
|
||||
public Integer getLevel() {
|
||||
return level;
|
||||
}
|
||||
public void setLevel(Integer level) {
|
||||
this.level = level;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user