file\on\off增加国际化
国际化修改CA为CN 增加音频/视频标志开关功能
This commit is contained in:
@@ -16,6 +16,15 @@ public class AvSignSampleCfg extends BaseCfg<AvSignSampleCfg> {
|
||||
@Expose
|
||||
@SerializedName("cfgId")
|
||||
private Integer compileId;
|
||||
|
||||
private Integer isValidOld;
|
||||
|
||||
public Integer getIsValidOld() {
|
||||
return isValidOld;
|
||||
}
|
||||
public void setIsValidOld(Integer isValidOld) {
|
||||
this.isValidOld = isValidOld;
|
||||
}
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.nis.domain.configuration;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class AvSignSampleCfgModel extends BaseCfg<AvSignSampleCfgModel> {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 7579758192797537509L;
|
||||
private List<AvSignSampleCfg> cfgs;
|
||||
public List<AvSignSampleCfg> getCfgs() {
|
||||
return cfgs;
|
||||
}
|
||||
public void setCfgs(List<AvSignSampleCfg> cfgs) {
|
||||
this.cfgs = cfgs;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user