|
@@ -1,15 +1,21 @@
|
|
package com.ym.mec.biz.dal.dto;
|
|
package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
public class UpdateStudentFeeDto {
|
|
public class UpdateStudentFeeDto {
|
|
|
|
+ @ApiModelProperty(value = "学员编号",required = false)
|
|
private Integer studentId;
|
|
private Integer studentId;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "缴费月份",required = false)
|
|
private List<Integer> month;
|
|
private List<Integer> month;
|
|
|
|
|
|
- private Integer isLock;
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否锁定1是0否",required = false)
|
|
|
|
+ private Integer isLock = 0;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "课程费用",required = false)
|
|
private BigDecimal amount;
|
|
private BigDecimal amount;
|
|
|
|
|
|
public Integer getStudentId() {
|
|
public Integer getStudentId() {
|