|
@@ -11,6 +11,7 @@ import com.ym.mec.biz.dal.enums.ClassGroupStudentStatusEnum;
|
|
|
import com.ym.mec.biz.dal.enums.KitPurchaseMethodEnum;
|
|
|
import com.ym.mec.biz.dal.enums.PaymentStatusEnum;
|
|
|
import com.ym.mec.biz.dal.enums.YesOrNoEnum;
|
|
|
+import com.ym.mec.biz.dal.entity.CooperationOrgan.OwnershipType;
|
|
|
|
|
|
/**
|
|
|
* 对应数据库表(student_registration):
|
|
@@ -109,6 +110,9 @@ public class StudentRegistration {
|
|
|
|
|
|
private BigDecimal depositFee;
|
|
|
|
|
|
+ //乐团
|
|
|
+ private OwnershipType ownershipType;
|
|
|
+
|
|
|
public BigDecimal getBalance() {
|
|
|
return balance;
|
|
|
}
|
|
@@ -371,4 +375,12 @@ public class StudentRegistration {
|
|
|
public void setDepositFee(BigDecimal depositFee) {
|
|
|
this.depositFee = depositFee;
|
|
|
}
|
|
|
+
|
|
|
+ public OwnershipType getOwnershipType() {
|
|
|
+ return ownershipType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOwnershipType(OwnershipType ownershipType) {
|
|
|
+ this.ownershipType = ownershipType;
|
|
|
+ }
|
|
|
}
|