|
@@ -1,9 +1,11 @@
|
|
package com.ym.mec.biz.dal.dto;
|
|
package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
|
|
+import com.ym.mec.biz.dal.enums.ClassGroupStudentStatusEnum;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
+import java.util.List;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
import com.ym.mec.biz.dal.enums.KitPurchaseMethodEnum;
|
|
import com.ym.mec.biz.dal.enums.KitPurchaseMethodEnum;
|
|
@@ -15,8 +17,11 @@ import com.ym.mec.biz.dal.enums.MusicGroupStatusEnum;
|
|
*/
|
|
*/
|
|
public class StudentManageBaseInfoOfMusicGroupDto {
|
|
public class StudentManageBaseInfoOfMusicGroupDto {
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "userId",required = false)
|
|
|
|
+ private Integer userId;
|
|
|
|
+
|
|
@ApiModelProperty(value = "乐团ID",required = false)
|
|
@ApiModelProperty(value = "乐团ID",required = false)
|
|
- private Long musicGroupId;
|
|
|
|
|
|
+ private String musicGroupId;
|
|
|
|
|
|
@ApiModelProperty(value = "乐团名称",required = false)
|
|
@ApiModelProperty(value = "乐团名称",required = false)
|
|
private String musicGroupName;
|
|
private String musicGroupName;
|
|
@@ -24,11 +29,14 @@ public class StudentManageBaseInfoOfMusicGroupDto {
|
|
@ApiModelProperty(value = "乐团状态(报名中、缴费中、筹备中、进行中、取消)",required = false)
|
|
@ApiModelProperty(value = "乐团状态(报名中、缴费中、筹备中、进行中、取消)",required = false)
|
|
private MusicGroupStatusEnum musicGroupStatus;
|
|
private MusicGroupStatusEnum musicGroupStatus;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "用户所在乐团状态)",required = false)
|
|
|
|
+ private ClassGroupStudentStatusEnum userMusicGroupStatus;
|
|
|
|
+
|
|
@ApiModelProperty(value = "加入乐团时间",required = false)
|
|
@ApiModelProperty(value = "加入乐团时间",required = false)
|
|
private Date joinMusicGroupDate;
|
|
private Date joinMusicGroupDate;
|
|
|
|
|
|
@ApiModelProperty(value = "科目ID",required = false)
|
|
@ApiModelProperty(value = "科目ID",required = false)
|
|
- private Long subjectId;
|
|
|
|
|
|
+ private Integer subjectId;
|
|
|
|
|
|
@ApiModelProperty(value = "科目名称",required = false)
|
|
@ApiModelProperty(value = "科目名称",required = false)
|
|
private String subjectName;
|
|
private String subjectName;
|
|
@@ -36,53 +44,50 @@ public class StudentManageBaseInfoOfMusicGroupDto {
|
|
@ApiModelProperty(value = "器材购买方式(团购、自备)",required = false)
|
|
@ApiModelProperty(value = "器材购买方式(团购、自备)",required = false)
|
|
private KitPurchaseMethodEnum kitPurchaseMethod;
|
|
private KitPurchaseMethodEnum kitPurchaseMethod;
|
|
|
|
|
|
- @ApiModelProperty(value = "商品ID列表",required = false)
|
|
|
|
- @JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
|
- private String goodsIdList;
|
|
|
|
-
|
|
|
|
- @ApiModelProperty(value = "商品名称列表",required = false)
|
|
|
|
- @JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
|
- private String[] goodsNameList;
|
|
|
|
|
|
+ @ApiModelProperty(value = "商品列表",required = false)
|
|
|
|
+ private List<UserGoodsDto> userGoodsDtos;
|
|
|
|
|
|
- @ApiModelProperty(value = "打包价格",required = false)
|
|
|
|
|
|
+ @ApiModelProperty(value = "价格",required = false)
|
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
- private BigDecimal price;
|
|
|
|
|
|
+ private BigDecimal depositFee;
|
|
|
|
|
|
- @ApiModelProperty(value = "部门ID",required = false)
|
|
|
|
- private Long organId;
|
|
|
|
|
|
+ public List<UserGoodsDto> getUserGoodsDtos() {
|
|
|
|
+ return userGoodsDtos;
|
|
|
|
+ }
|
|
|
|
|
|
- @ApiModelProperty(value = "部门名称",required = false)
|
|
|
|
- private String organName;
|
|
|
|
|
|
+ public void setUserGoodsDtos(List<UserGoodsDto> userGoodsDtos) {
|
|
|
|
+ this.userGoodsDtos = userGoodsDtos;
|
|
|
|
+ }
|
|
|
|
|
|
- public Long getOrganId() {
|
|
|
|
- return organId;
|
|
|
|
|
|
+ public Integer getUserId() {
|
|
|
|
+ return userId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setOrganId(Long organId) {
|
|
|
|
- this.organId = organId;
|
|
|
|
|
|
+ public void setUserId(Integer userId) {
|
|
|
|
+ this.userId = userId;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getOrganName() {
|
|
|
|
- return organName;
|
|
|
|
|
|
+ public ClassGroupStudentStatusEnum getUserMusicGroupStatus() {
|
|
|
|
+ return userMusicGroupStatus;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setOrganName(String organName) {
|
|
|
|
- this.organName = organName;
|
|
|
|
|
|
+ public void setUserMusicGroupStatus(ClassGroupStudentStatusEnum userMusicGroupStatus) {
|
|
|
|
+ this.userMusicGroupStatus = userMusicGroupStatus;
|
|
}
|
|
}
|
|
|
|
|
|
- public String[] getGoodsNameList() {
|
|
|
|
- return goodsNameList;
|
|
|
|
|
|
+ public BigDecimal getDepositFee() {
|
|
|
|
+ return depositFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setGoodsNameList(String[] goodsNameList) {
|
|
|
|
- this.goodsNameList = goodsNameList;
|
|
|
|
|
|
+ public void setDepositFee(BigDecimal depositFee) {
|
|
|
|
+ this.depositFee = depositFee;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getMusicGroupId() {
|
|
|
|
|
|
+ public String getMusicGroupId() {
|
|
return musicGroupId;
|
|
return musicGroupId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setMusicGroupId(Long musicGroupId) {
|
|
|
|
|
|
+ public void setMusicGroupId(String musicGroupId) {
|
|
this.musicGroupId = musicGroupId;
|
|
this.musicGroupId = musicGroupId;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -110,11 +115,11 @@ public class StudentManageBaseInfoOfMusicGroupDto {
|
|
this.joinMusicGroupDate = joinMusicGroupDate;
|
|
this.joinMusicGroupDate = joinMusicGroupDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getSubjectId() {
|
|
|
|
|
|
+ public Integer getSubjectId() {
|
|
return subjectId;
|
|
return subjectId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setSubjectId(Long subjectId) {
|
|
|
|
|
|
+ public void setSubjectId(Integer subjectId) {
|
|
this.subjectId = subjectId;
|
|
this.subjectId = subjectId;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -133,20 +138,4 @@ public class StudentManageBaseInfoOfMusicGroupDto {
|
|
public void setKitPurchaseMethod(KitPurchaseMethodEnum kitPurchaseMethod) {
|
|
public void setKitPurchaseMethod(KitPurchaseMethodEnum kitPurchaseMethod) {
|
|
this.kitPurchaseMethod = kitPurchaseMethod;
|
|
this.kitPurchaseMethod = kitPurchaseMethod;
|
|
}
|
|
}
|
|
-
|
|
|
|
- public String getGoodsIdList() {
|
|
|
|
- return goodsIdList;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setGoodsIdList(String goodsIdList) {
|
|
|
|
- this.goodsIdList = goodsIdList;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getPrice() {
|
|
|
|
- return price;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPrice(BigDecimal price) {
|
|
|
|
- this.price = price;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|