|
@@ -8,7 +8,6 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
-import java.sql.DatabaseMetaData;
|
|
|
import java.sql.Date;
|
|
|
|
|
|
/**
|
|
@@ -94,6 +93,27 @@ public class StudentRegistration {
|
|
|
@ApiModelProperty(value = "临时课程费用", required = true)
|
|
|
private BigDecimal temporaryCourseFee;
|
|
|
|
|
|
+ @ApiModelProperty(value = "余额", required = true)
|
|
|
+ private BigDecimal balance;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否是插班生0不是,1是", required = true)
|
|
|
+ private int transferStudent;
|
|
|
+
|
|
|
+ public BigDecimal getBalance() {
|
|
|
+ return balance;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBalance(BigDecimal balance) {
|
|
|
+ this.balance = balance;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getTransferStudent() {
|
|
|
+ return transferStudent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTransferStudent(int transferStudent) {
|
|
|
+ this.transferStudent = transferStudent;
|
|
|
+ }
|
|
|
|
|
|
public ClassGroupStudentStatusEnum getMusicGroupStatus() {
|
|
|
return musicGroupStatus;
|