音视频样例配置审核流程(配置下发,配置取消)完善
This commit is contained in:
@@ -1,13 +1,21 @@
|
||||
package com.nis.domain.configuration;
|
||||
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class AvSignSampleCfg extends BaseCfg<AvSignSampleCfg> {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 8002327858986390761L;
|
||||
@Expose
|
||||
private String description;
|
||||
@Expose
|
||||
private Integer level;
|
||||
@Expose
|
||||
@SerializedName("cfgId")
|
||||
private Integer compileId;
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -20,4 +28,11 @@ public class AvSignSampleCfg extends BaseCfg<AvSignSampleCfg> {
|
||||
public void setLevel(Integer level) {
|
||||
this.level = level;
|
||||
}
|
||||
public Integer getCompileId() {
|
||||
return compileId;
|
||||
}
|
||||
public void setCompileId(Integer compileId) {
|
||||
this.compileId = compileId;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user