You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
162 lines
3.3 KiB
162 lines
3.3 KiB
package icaap.api;
|
|
|
|
|
|
import io.sc.platform.orm.api.vo.CorporationAuditorVo;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
public class IndicatorVo extends CorporationAuditorVo {
|
|
private String id;
|
|
private String code;
|
|
private String name;
|
|
private String description;
|
|
private Boolean enable;
|
|
private String category;
|
|
private String categoryRisk;
|
|
private String categoryBusiness;
|
|
private String categoryCal;
|
|
private String unit;
|
|
private String frequency;
|
|
private String source;
|
|
private String formula;
|
|
private String sql;
|
|
private String superviseSource;
|
|
private String superviseCondition;
|
|
private BigDecimal superviseValue;
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getCode() {
|
|
return code;
|
|
}
|
|
|
|
public void setCode(String code) {
|
|
this.code = code;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public Boolean getEnable() {
|
|
return enable;
|
|
}
|
|
|
|
public void setEnable(Boolean enable) {
|
|
this.enable = enable;
|
|
}
|
|
|
|
public String getCategory() {
|
|
return category;
|
|
}
|
|
|
|
public void setCategory(String category) {
|
|
this.category = category;
|
|
}
|
|
|
|
public String getCategoryRisk() {
|
|
return categoryRisk;
|
|
}
|
|
|
|
public void setCategoryRisk(String categoryRisk) {
|
|
this.categoryRisk = categoryRisk;
|
|
}
|
|
|
|
public String getCategoryBusiness() {
|
|
return categoryBusiness;
|
|
}
|
|
|
|
public void setCategoryBusiness(String categoryBusiness) {
|
|
this.categoryBusiness = categoryBusiness;
|
|
}
|
|
|
|
public String getCategoryCal() {
|
|
return categoryCal;
|
|
}
|
|
|
|
public void setCategoryCal(String categoryCal) {
|
|
this.categoryCal = categoryCal;
|
|
}
|
|
|
|
public String getUnit() {
|
|
return unit;
|
|
}
|
|
|
|
public void setUnit(String unit) {
|
|
this.unit = unit;
|
|
}
|
|
|
|
public String getFrequency() {
|
|
return frequency;
|
|
}
|
|
|
|
public void setFrequency(String frequency) {
|
|
this.frequency = frequency;
|
|
}
|
|
|
|
public String getSource() {
|
|
return source;
|
|
}
|
|
|
|
public void setSource(String source) {
|
|
this.source = source;
|
|
}
|
|
|
|
public String getFormula() {
|
|
return formula;
|
|
}
|
|
|
|
public void setFormula(String formula) {
|
|
this.formula = formula;
|
|
}
|
|
|
|
public String getSql() {
|
|
return sql;
|
|
}
|
|
|
|
public void setSql(String sql) {
|
|
this.sql = sql;
|
|
}
|
|
|
|
public String getSuperviseSource() {
|
|
return superviseSource;
|
|
}
|
|
|
|
public void setSuperviseSource(String superviseSource) {
|
|
this.superviseSource = superviseSource;
|
|
}
|
|
|
|
public String getSuperviseCondition() {
|
|
return superviseCondition;
|
|
}
|
|
|
|
public void setSuperviseCondition(String superviseCondition) {
|
|
this.superviseCondition = superviseCondition;
|
|
}
|
|
|
|
public BigDecimal getSuperviseValue() {
|
|
return superviseValue;
|
|
}
|
|
|
|
public void setSuperviseValue(BigDecimal superviseValue) {
|
|
this.superviseValue = superviseValue;
|
|
}
|
|
}
|
|
|