音视频样例配置审核流程(配置下发,配置取消)完善

This commit is contained in:
zhangwei
2018-05-21 11:22:51 +08:00
parent 0abeb3a901
commit 5643a8243f
12 changed files with 733 additions and 58 deletions

View File

@@ -1,16 +1,51 @@
package com.nis.domain.configuration;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class AvFileSampleCfg extends BaseCfg<AvFileSampleCfg> {
/**
*
*/
private static final long serialVersionUID = -2356472662189941874L;
@Expose
@SerializedName("srcFile")
private String srcUrl;
@Expose
@SerializedName("sampleFile")
private String sampleUrl;
@Expose
@SerializedName("srcFileMd5")
private String srcMd5;
@Expose
@SerializedName("sampleFileMd5")
private String sampleMd5;
@Expose
private Integer level;
@Expose
@SerializedName("cfgId")
private Integer compileId;
private String srcPath;
private String samplePath;
public String getSrcPath() {
return srcPath;
}
public void setSrcPath(String srcPath) {
this.srcPath = srcPath;
}
public String getSamplePath() {
return samplePath;
}
public void setSamplePath(String samplePath) {
this.samplePath = samplePath;
}
public Integer getCompileId() {
return compileId;
}
public void setCompileId(Integer compileId) {
this.compileId = compileId;
}
public String getSrcUrl() {
return srcUrl;
}