|
@@ -0,0 +1,115 @@
|
|
|
+package com.yonge.cooleshow.biz.dal.vo;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Author: cy
|
|
|
+ * @Date: 2022/5/24
|
|
|
+ */
|
|
|
+@ApiModel
|
|
|
+public class CourseGroupInfoVo implements Serializable {
|
|
|
+ @ApiModelProperty(value = "课程组id")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "课程组名称")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "声部id")
|
|
|
+ private Long subjectId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "声部名称")
|
|
|
+ private String subjectName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "课程数")
|
|
|
+ private Integer courseNum;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "课程组售价")
|
|
|
+ private BigDecimal coursePrice;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "课程组状态 ING进行中 COMPLETE已完成 DISSOLVE-未成课(解散课程) CANCEL已取消-未开始报名前可取消 APPLY报名中 NOT_SALE未开售")
|
|
|
+ private String status;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "课程介绍")
|
|
|
+ private String courseIntroduce;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
+ private Date createdTime;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getSubjectId() {
|
|
|
+ return subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectId(Long subjectId) {
|
|
|
+ this.subjectId = subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubjectName() {
|
|
|
+ return subjectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectName(String subjectName) {
|
|
|
+ this.subjectName = subjectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCourseNum() {
|
|
|
+ return courseNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseNum(Integer courseNum) {
|
|
|
+ this.courseNum = courseNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCoursePrice() {
|
|
|
+ return coursePrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCoursePrice(BigDecimal coursePrice) {
|
|
|
+ this.coursePrice = coursePrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(String status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCourseIntroduce() {
|
|
|
+ return courseIntroduce;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseIntroduce(String courseIntroduce) {
|
|
|
+ this.courseIntroduce = courseIntroduce;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getCreatedTime() {
|
|
|
+ return createdTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedTime(Date createdTime) {
|
|
|
+ this.createdTime = createdTime;
|
|
|
+ }
|
|
|
+}
|