This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/configuration/AvSignSampleCfg.java
2018-05-23 18:16:07 -04:00

39 lines
852 B
Java

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;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getLevel() {
return level;
}
public void setLevel(Integer level) {
this.level = level;
}
public Integer getCompileId() {
return compileId;
}
public void setCompileId(Integer compileId) {
this.compileId = compileId;
}
}