Commit 22e16976 by zhangkb

指标定义添加编码和公式字段

parent 88601cac
......@@ -36,6 +36,10 @@ public class IndicatorsDef implements Serializable{
private String creator;
private String updator;
//添加基础指标编号和公式属性
private String indiCode;
private String indiFormula;
public String getId() {
return id;
}
......@@ -108,4 +112,16 @@ public class IndicatorsDef implements Serializable{
public void setUpdator(String updator) {
this.updator = updator;
}
public String getIndiCode() {
return indiCode;
}
public void setIndiCode(String indiCode) {
this.indiCode = indiCode;
}
public String getIndiFormula() {
return indiFormula;
}
public void setIndiFormula(String indiFormula) {
this.indiFormula = indiFormula;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment