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.
 
 
 
 
 
 

87 lines
1.5 KiB

package erm.capitalplan.api;
import io.sc.platform.orm.api.vo.CorporationAuditorVo;
public class StrategicTargetVo extends CorporationAuditorVo {
private String id;
private String code;
private String name;
private String category;
private Integer order;
private Double t;
private Double t1;
private Double t2;
private Double t3;
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 getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public Integer getOrder() {
return order;
}
public void setOrder(Integer order) {
this.order = order;
}
public Double getT() {
return t;
}
public void setT(Double t) {
this.t = t;
}
public Double getT1() {
return t1;
}
public void setT1(Double t1) {
this.t1 = t1;
}
public Double getT2() {
return t2;
}
public void setT2(Double t2) {
this.t2 = t2;
}
public Double getT3() {
return t3;
}
public void setT3(Double t3) {
this.t3 = t3;
}
}