|
@@ -1,7 +1,6 @@
|
|
package com.ym.mec.biz.dal.dto;
|
|
package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
import com.ym.mec.biz.dal.entity.Goods;
|
|
import com.ym.mec.biz.dal.entity.Goods;
|
|
-import com.ym.mec.biz.dal.entity.StudentPaymentOrder;
|
|
|
|
import com.ym.mec.biz.dal.entity.StudentPaymentOrderDetail;
|
|
import com.ym.mec.biz.dal.entity.StudentPaymentOrderDetail;
|
|
import com.ym.mec.common.enums.BaseEnum;
|
|
import com.ym.mec.common.enums.BaseEnum;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@@ -9,7 +8,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
-public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
|
|
|
|
+public class StudentPaymentOrderExportDto extends StudentPaymentOrderRouteDto {
|
|
@ApiModelProperty(value = "分部",required = true)
|
|
@ApiModelProperty(value = "分部",required = true)
|
|
private String organName;
|
|
private String organName;
|
|
|
|
|
|
@@ -39,14 +38,6 @@ public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
@ApiModelProperty(value = "维修费用",required = true)
|
|
@ApiModelProperty(value = "维修费用",required = true)
|
|
private BigDecimal repairFee = BigDecimal.ZERO;
|
|
private BigDecimal repairFee = BigDecimal.ZERO;
|
|
|
|
|
|
- //汇付手续费
|
|
|
|
- @ApiModelProperty(value = "汇付手续费",required = true)
|
|
|
|
- private BigDecimal transferFee = BigDecimal.ZERO;
|
|
|
|
-
|
|
|
|
- //平台手续费
|
|
|
|
- @ApiModelProperty(value = "平台手续费",required = true)
|
|
|
|
- private BigDecimal platformFee = BigDecimal.ZERO;
|
|
|
|
-
|
|
|
|
//乐团家长采买课程费用
|
|
//乐团家长采买课程费用
|
|
@ApiModelProperty(value = "乐团课程费用",required = true)
|
|
@ApiModelProperty(value = "乐团课程费用",required = true)
|
|
private BigDecimal musicGroupCourseFee = BigDecimal.ZERO;
|
|
private BigDecimal musicGroupCourseFee = BigDecimal.ZERO;
|
|
@@ -124,29 +115,6 @@ public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
@ApiModelProperty(value = "商品列表",required = true)
|
|
@ApiModelProperty(value = "商品列表",required = true)
|
|
private List<Goods> goodsList;
|
|
private List<Goods> goodsList;
|
|
|
|
|
|
- //收款账户
|
|
|
|
- @ApiModelProperty(value = "收款账户",required = true)
|
|
|
|
- private String routeMerNo;
|
|
|
|
-
|
|
|
|
- //分润金额
|
|
|
|
- @ApiModelProperty(value = "分润金额",required = true)
|
|
|
|
- private BigDecimal routeAmount;
|
|
|
|
-
|
|
|
|
- //分润余额
|
|
|
|
- @ApiModelProperty(value = "分润余额",required = true)
|
|
|
|
- private BigDecimal routeBalance;
|
|
|
|
-
|
|
|
|
- //分润中的销售费用
|
|
|
|
- @ApiModelProperty(value = "分润中的销售费用",required = true)
|
|
|
|
- private BigDecimal saleAmount = BigDecimal.ZERO;
|
|
|
|
-
|
|
|
|
- //分润中的服务费用
|
|
|
|
- @ApiModelProperty(value = "分润中的服务费用",required = true)
|
|
|
|
- private BigDecimal serviceAmount = BigDecimal.ZERO;
|
|
|
|
-
|
|
|
|
- @ApiModelProperty(value = "服务费",required = true)
|
|
|
|
- private BigDecimal serviceFee = BigDecimal.ZERO;
|
|
|
|
-
|
|
|
|
@ApiModelProperty(value = "分部",required = true)
|
|
@ApiModelProperty(value = "分部",required = true)
|
|
private String feeFlag;
|
|
private String feeFlag;
|
|
|
|
|
|
@@ -228,76 +196,20 @@ public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
@ApiModelProperty(value = "教学点",required = true)
|
|
@ApiModelProperty(value = "教学点",required = true)
|
|
private String schoolName;
|
|
private String schoolName;
|
|
|
|
|
|
- public String getUserOrganName() {
|
|
|
|
- return userOrganName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUserOrganName(String userOrganName) {
|
|
|
|
- this.userOrganName = userOrganName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getCourseSchoolBuyAmount() {
|
|
|
|
- return courseSchoolBuyAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCourseSchoolBuyAmount(BigDecimal courseSchoolBuyAmount) {
|
|
|
|
- this.courseSchoolBuyAmount = courseSchoolBuyAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getRetailGoodsFee() {
|
|
|
|
- return retailGoodsFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setRetailGoodsFee(BigDecimal retailGoodsFee) {
|
|
|
|
- this.retailGoodsFee = retailGoodsFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getLargeMusicalFee() {
|
|
|
|
- return largeMusicalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setLargeMusicalFee(BigDecimal largeMusicalFee) {
|
|
|
|
- this.largeMusicalFee = largeMusicalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSchoolName() {
|
|
|
|
- return schoolName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSchoolName(String schoolName) {
|
|
|
|
- this.schoolName = schoolName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getFeeMusicGroupName() {
|
|
|
|
- return feeMusicGroupName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFeeMusicGroupName(String feeMusicGroupName) {
|
|
|
|
- this.feeMusicGroupName = feeMusicGroupName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getFeeMusicGroupId() {
|
|
|
|
- return feeMusicGroupId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFeeMusicGroupId(String feeMusicGroupId) {
|
|
|
|
- this.feeMusicGroupId = feeMusicGroupId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getTypeDesc() {
|
|
|
|
- return typeDesc;
|
|
|
|
|
|
+ public String getOrganName() {
|
|
|
|
+ return organName;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setTypeDesc(String typeDesc) {
|
|
|
|
- this.typeDesc = typeDesc;
|
|
|
|
|
|
+ public void setOrganName(String organName) {
|
|
|
|
+ this.organName = organName;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getOrderAmount() {
|
|
|
|
- return orderAmount;
|
|
|
|
|
|
+ public String getUserOrganName() {
|
|
|
|
+ return userOrganName;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setOrderAmount(BigDecimal orderAmount) {
|
|
|
|
- this.orderAmount = orderAmount;
|
|
|
|
|
|
+ public void setUserOrganName(String userOrganName) {
|
|
|
|
+ this.userOrganName = userOrganName;
|
|
}
|
|
}
|
|
|
|
|
|
public BigDecimal getSporadicAmount() {
|
|
public BigDecimal getSporadicAmount() {
|
|
@@ -308,54 +220,6 @@ public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
this.sporadicAmount = sporadicAmount;
|
|
this.sporadicAmount = sporadicAmount;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getMusicalFee() {
|
|
|
|
- return musicalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setMusicalFee(BigDecimal musicalFee) {
|
|
|
|
- this.musicalFee = musicalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getTeachingFee() {
|
|
|
|
- return teachingFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTeachingFee(BigDecimal teachingFee) {
|
|
|
|
- this.teachingFee = teachingFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getTransferFee() {
|
|
|
|
- return transferFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTransferFee(BigDecimal transferFee) {
|
|
|
|
- this.transferFee = transferFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getPlatformFee() {
|
|
|
|
- return platformFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPlatformFee(BigDecimal platformFee) {
|
|
|
|
- this.platformFee = platformFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOrganName() {
|
|
|
|
- return organName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrganName(String organName) {
|
|
|
|
- this.organName = organName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSubjectName() {
|
|
|
|
- return subjectName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSubjectName(String subjectName) {
|
|
|
|
- this.subjectName = subjectName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public String getSporadicType() {
|
|
public String getSporadicType() {
|
|
return sporadicType;
|
|
return sporadicType;
|
|
}
|
|
}
|
|
@@ -364,68 +228,28 @@ public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
this.sporadicType = sporadicType;
|
|
this.sporadicType = sporadicType;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getLeaseFee() {
|
|
|
|
- return leaseFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setLeaseFee(BigDecimal leaseFee) {
|
|
|
|
- this.leaseFee = leaseFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public List<StudentPaymentOrderDetail> getOrderDetailList() {
|
|
|
|
- return orderDetailList;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderDetailList(List<StudentPaymentOrderDetail> orderDetailList) {
|
|
|
|
- this.orderDetailList = orderDetailList;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getChargeType() {
|
|
|
|
- return chargeType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setChargeType(Integer chargeType) {
|
|
|
|
- this.chargeType = chargeType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public List<Goods> getGoodsList() {
|
|
|
|
- return goodsList;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setGoodsList(List<Goods> goodsList) {
|
|
|
|
- this.goodsList = goodsList;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCooperationOrganName() {
|
|
|
|
- return cooperationOrganName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCooperationOrganName(String cooperationOrganName) {
|
|
|
|
- this.cooperationOrganName = cooperationOrganName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getRouteMerNo() {
|
|
|
|
- return routeMerNo;
|
|
|
|
|
|
+ public BigDecimal getMusicalFee() {
|
|
|
|
+ return musicalFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setRouteMerNo(String routeMerNo) {
|
|
|
|
- this.routeMerNo = routeMerNo;
|
|
|
|
|
|
+ public void setMusicalFee(BigDecimal musicalFee) {
|
|
|
|
+ this.musicalFee = musicalFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getRouteAmount() {
|
|
|
|
- return routeAmount;
|
|
|
|
|
|
+ public BigDecimal getLeaseFee() {
|
|
|
|
+ return leaseFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setRouteAmount(BigDecimal routeAmount) {
|
|
|
|
- this.routeAmount = routeAmount;
|
|
|
|
|
|
+ public void setLeaseFee(BigDecimal leaseFee) {
|
|
|
|
+ this.leaseFee = leaseFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getRouteBalance() {
|
|
|
|
- return routeBalance;
|
|
|
|
|
|
+ public BigDecimal getTeachingFee() {
|
|
|
|
+ return teachingFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setRouteBalance(BigDecimal routeBalance) {
|
|
|
|
- this.routeBalance = routeBalance;
|
|
|
|
|
|
+ public void setTeachingFee(BigDecimal teachingFee) {
|
|
|
|
+ this.teachingFee = teachingFee;
|
|
}
|
|
}
|
|
|
|
|
|
public BigDecimal getRepairFee() {
|
|
public BigDecimal getRepairFee() {
|
|
@@ -444,6 +268,14 @@ public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
this.musicGroupCourseFee = musicGroupCourseFee;
|
|
this.musicGroupCourseFee = musicGroupCourseFee;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public BigDecimal getCourseSchoolBuyAmount() {
|
|
|
|
+ return courseSchoolBuyAmount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCourseSchoolBuyAmount(BigDecimal courseSchoolBuyAmount) {
|
|
|
|
+ this.courseSchoolBuyAmount = courseSchoolBuyAmount;
|
|
|
|
+ }
|
|
|
|
+
|
|
public BigDecimal getHighCourseFee() {
|
|
public BigDecimal getHighCourseFee() {
|
|
return highCourseFee;
|
|
return highCourseFee;
|
|
}
|
|
}
|
|
@@ -492,44 +324,28 @@ public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
this.otherFee = otherFee;
|
|
this.otherFee = otherFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getFeeFlag() {
|
|
|
|
- return feeFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFeeFlag(String feeFlag) {
|
|
|
|
- this.feeFlag = feeFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getSaleAmount() {
|
|
|
|
- return saleAmount;
|
|
|
|
|
|
+ public BigDecimal getMaintenanceFee() {
|
|
|
|
+ return maintenanceFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setSaleAmount(BigDecimal saleAmount) {
|
|
|
|
- this.saleAmount = saleAmount;
|
|
|
|
|
|
+ public void setMaintenanceFee(BigDecimal maintenanceFee) {
|
|
|
|
+ this.maintenanceFee = maintenanceFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getServiceAmount() {
|
|
|
|
- return serviceAmount;
|
|
|
|
|
|
+ public BigDecimal getRetailGoodsFee() {
|
|
|
|
+ return retailGoodsFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setServiceAmount(BigDecimal serviceAmount) {
|
|
|
|
- this.serviceAmount = serviceAmount;
|
|
|
|
|
|
+ public void setRetailGoodsFee(BigDecimal retailGoodsFee) {
|
|
|
|
+ this.retailGoodsFee = retailGoodsFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getServiceFee() {
|
|
|
|
- return serviceFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setServiceFee(BigDecimal serviceFee) {
|
|
|
|
- this.serviceFee = serviceFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getMaintenanceFee() {
|
|
|
|
- return maintenanceFee;
|
|
|
|
|
|
+ public BigDecimal getLargeMusicalFee() {
|
|
|
|
+ return largeMusicalFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setMaintenanceFee(BigDecimal maintenanceFee) {
|
|
|
|
- this.maintenanceFee = maintenanceFee;
|
|
|
|
|
|
+ public void setLargeMusicalFee(BigDecimal largeMusicalFee) {
|
|
|
|
+ this.largeMusicalFee = largeMusicalFee;
|
|
}
|
|
}
|
|
|
|
|
|
public BigDecimal getMaintenanceProductFee() {
|
|
public BigDecimal getMaintenanceProductFee() {
|
|
@@ -540,14 +356,6 @@ public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
this.maintenanceProductFee = maintenanceProductFee;
|
|
this.maintenanceProductFee = maintenanceProductFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getEduTeacher() {
|
|
|
|
- return eduTeacher;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setEduTeacher(String eduTeacher) {
|
|
|
|
- this.eduTeacher = eduTeacher;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public BigDecimal getCloudTeacherFee() {
|
|
public BigDecimal getCloudTeacherFee() {
|
|
return cloudTeacherFee;
|
|
return cloudTeacherFee;
|
|
}
|
|
}
|
|
@@ -572,6 +380,62 @@ public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
this.rechargeFee = rechargeFee;
|
|
this.rechargeFee = rechargeFee;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getSubjectName() {
|
|
|
|
+ return subjectName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSubjectName(String subjectName) {
|
|
|
|
+ this.subjectName = subjectName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCooperationOrganName() {
|
|
|
|
+ return cooperationOrganName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCooperationOrganName(String cooperationOrganName) {
|
|
|
|
+ this.cooperationOrganName = cooperationOrganName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getEduTeacher() {
|
|
|
|
+ return eduTeacher;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setEduTeacher(String eduTeacher) {
|
|
|
|
+ this.eduTeacher = eduTeacher;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getChargeType() {
|
|
|
|
+ return chargeType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setChargeType(Integer chargeType) {
|
|
|
|
+ this.chargeType = chargeType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public List<StudentPaymentOrderDetail> getOrderDetailList() {
|
|
|
|
+ return orderDetailList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOrderDetailList(List<StudentPaymentOrderDetail> orderDetailList) {
|
|
|
|
+ this.orderDetailList = orderDetailList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public List<Goods> getGoodsList() {
|
|
|
|
+ return goodsList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGoodsList(List<Goods> goodsList) {
|
|
|
|
+ this.goodsList = goodsList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getFeeFlag() {
|
|
|
|
+ return feeFlag;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setFeeFlag(String feeFlag) {
|
|
|
|
+ this.feeFlag = feeFlag;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Integer getPayingStatus() {
|
|
public Integer getPayingStatus() {
|
|
return payingStatus;
|
|
return payingStatus;
|
|
}
|
|
}
|
|
@@ -580,11 +444,51 @@ public class StudentPaymentOrderExportDto extends StudentPaymentOrder {
|
|
this.payingStatus = payingStatus;
|
|
this.payingStatus = payingStatus;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getTranslatedIncome() {
|
|
|
|
- return translatedIncome;
|
|
|
|
- }
|
|
|
|
|
|
+ public BigDecimal getOrderAmount() {
|
|
|
|
+ return orderAmount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOrderAmount(BigDecimal orderAmount) {
|
|
|
|
+ this.orderAmount = orderAmount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getTranslatedIncome() {
|
|
|
|
+ return translatedIncome;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTranslatedIncome(BigDecimal translatedIncome) {
|
|
|
|
+ this.translatedIncome = translatedIncome;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getTypeDesc() {
|
|
|
|
+ return typeDesc;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTypeDesc(String typeDesc) {
|
|
|
|
+ this.typeDesc = typeDesc;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getFeeMusicGroupId() {
|
|
|
|
+ return feeMusicGroupId;
|
|
|
|
+ }
|
|
|
|
|
|
- public void setTranslatedIncome(BigDecimal translatedIncome) {
|
|
|
|
- this.translatedIncome = translatedIncome;
|
|
|
|
- }
|
|
|
|
|
|
+ public void setFeeMusicGroupId(String feeMusicGroupId) {
|
|
|
|
+ this.feeMusicGroupId = feeMusicGroupId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getFeeMusicGroupName() {
|
|
|
|
+ return feeMusicGroupName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setFeeMusicGroupName(String feeMusicGroupName) {
|
|
|
|
+ this.feeMusicGroupName = feeMusicGroupName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSchoolName() {
|
|
|
|
+ return schoolName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchoolName(String schoolName) {
|
|
|
|
+ this.schoolName = schoolName;
|
|
|
|
+ }
|
|
}
|
|
}
|