|
@@ -12,6 +12,11 @@ public class StudentPaymentRouteOrderDto extends StudentPaymentOrder {
|
|
|
private Integer routeOrganId;
|
|
|
|
|
|
/**
|
|
|
+ * 学校id
|
|
|
+ */
|
|
|
+ private Integer schoolId;
|
|
|
+
|
|
|
+ /**
|
|
|
* 分润金额
|
|
|
*/
|
|
|
private BigDecimal routeAmount;
|
|
@@ -70,4 +75,12 @@ public class StudentPaymentRouteOrderDto extends StudentPaymentOrder {
|
|
|
public void setRouteBalanceAmount(BigDecimal routeBalanceAmount) {
|
|
|
this.routeBalanceAmount = routeBalanceAmount;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getSchoolId() {
|
|
|
+ return schoolId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSchoolId(Integer schoolId) {
|
|
|
+ this.schoolId = schoolId;
|
|
|
+ }
|
|
|
}
|