|
@@ -1,7 +1,9 @@
|
|
|
package com.ym.mec.biz.dal.page;
|
|
|
|
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
public class RepairStudentQueryInfo extends QueryInfo {
|
|
@@ -26,6 +28,13 @@ public class RepairStudentQueryInfo extends QueryInfo {
|
|
|
|
|
|
private Integer payStatus;
|
|
|
|
|
|
+ @ApiModelProperty(value = "乐器列表id",required = false)
|
|
|
+ private Long studentInstrumentId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "特权减免金额",required = false)
|
|
|
+ private BigDecimal exemptionAmount;
|
|
|
+
|
|
|
+
|
|
|
public Integer getSubjectId() {
|
|
|
return subjectId;
|
|
|
}
|
|
@@ -97,4 +106,20 @@ public class RepairStudentQueryInfo extends QueryInfo {
|
|
|
public void setPayStatus(Integer payStatus) {
|
|
|
this.payStatus = payStatus;
|
|
|
}
|
|
|
+
|
|
|
+ public Long getStudentInstrumentId() {
|
|
|
+ return studentInstrumentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentInstrumentId(Long studentInstrumentId) {
|
|
|
+ this.studentInstrumentId = studentInstrumentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getExemptionAmount() {
|
|
|
+ return exemptionAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExemptionAmount(BigDecimal exemptionAmount) {
|
|
|
+ this.exemptionAmount = exemptionAmount;
|
|
|
+ }
|
|
|
}
|