|
@@ -27,6 +27,7 @@ public class Practice4OrganDto {
|
|
|
private Integer change4MonthNum = 0;
|
|
|
@ApiModelProperty(value = "当月回款金额",required = false)
|
|
|
private BigDecimal totalMoney = BigDecimal.ZERO;
|
|
|
+ private Double scale = 0.00;
|
|
|
|
|
|
private String studentIds;
|
|
|
public String getOrganName() {
|
|
@@ -124,4 +125,12 @@ public class Practice4OrganDto {
|
|
|
public void setTotalNum(Integer totalNum) {
|
|
|
this.totalNum = totalNum;
|
|
|
}
|
|
|
+
|
|
|
+ public Double getScale() {
|
|
|
+ return scale;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setScale(Double scale) {
|
|
|
+ this.scale = scale;
|
|
|
+ }
|
|
|
}
|