|
@@ -34,6 +34,9 @@ public class RepairStudentQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "特权减免金额",required = false)
|
|
|
private BigDecimal exemptionAmount;
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否有减免金额0-否 1-是",required = false)
|
|
|
+ private Integer hasExemptionAmount;
|
|
|
+
|
|
|
|
|
|
public Integer getSubjectId() {
|
|
|
return subjectId;
|
|
@@ -122,4 +125,12 @@ public class RepairStudentQueryInfo extends QueryInfo {
|
|
|
public void setExemptionAmount(BigDecimal exemptionAmount) {
|
|
|
this.exemptionAmount = exemptionAmount;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getHasExemptionAmount() {
|
|
|
+ return hasExemptionAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHasExemptionAmount(Integer hasExemptionAmount) {
|
|
|
+ this.hasExemptionAmount = hasExemptionAmount;
|
|
|
+ }
|
|
|
}
|