|
@@ -1,15 +1,15 @@
|
|
|
package com.yonge.cooleshow.biz.dal.entity;
|
|
|
|
|
|
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* (CourseScheduleStudentMusicSheet)表实体类
|
|
@@ -17,6 +17,7 @@ import java.io.Serializable;
|
|
|
* @author zx
|
|
|
* @since 2022-04-02 15:56:01
|
|
|
*/
|
|
|
+@Data
|
|
|
@ApiModel(value = "course_schedule_student_music_sheet-${tableInfo.comment}")
|
|
|
public class CourseScheduleStudentMusicSheet implements Serializable {
|
|
|
@TableId(value = "id_", type = IdType.AUTO)
|
|
@@ -37,7 +38,7 @@ public class CourseScheduleStudentMusicSheet implements Serializable {
|
|
|
|
|
|
@TableField("music_sheet_accompaniment_id_")
|
|
|
@ApiModelProperty(value = "伴奏编号")
|
|
|
- private Long musicSheetAccompanimentId;
|
|
|
+ private Long musicScoreAccompanimentId;
|
|
|
|
|
|
@TableField("play_status_")
|
|
|
@ApiModelProperty(value = "原音播放状态(1是0否)")
|
|
@@ -63,94 +64,5 @@ public class CourseScheduleStudentMusicSheet implements Serializable {
|
|
|
@ApiModelProperty(value = "${column.comment}")
|
|
|
private Date updateTime;
|
|
|
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCourseScheduleId() {
|
|
|
- return courseScheduleId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCourseScheduleId(Long courseScheduleId) {
|
|
|
- this.courseScheduleId = courseScheduleId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getUserId() {
|
|
|
- return userId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserId(Long userId) {
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getDownStatus() {
|
|
|
- return downStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDownStatus(Integer downStatus) {
|
|
|
- this.downStatus = downStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getMusicSheetAccompanimentId() {
|
|
|
- return musicSheetAccompanimentId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMusicSheetAccompanimentId(Long musicSheetAccompanimentId) {
|
|
|
- this.musicSheetAccompanimentId = musicSheetAccompanimentId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getPlayStatus() {
|
|
|
- return playStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPlayStatus(Integer playStatus) {
|
|
|
- this.playStatus = playStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getAccompanimentPlayStatus() {
|
|
|
- return accompanimentPlayStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAccompanimentPlayStatus(Integer accompanimentPlayStatus) {
|
|
|
- this.accompanimentPlayStatus = accompanimentPlayStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getUserType() {
|
|
|
- return userType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserType(Integer userType) {
|
|
|
- this.userType = userType;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getSpeed() {
|
|
|
- return speed;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSpeed(Integer speed) {
|
|
|
- this.speed = speed;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(Date createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getUpdateTime() {
|
|
|
- return updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdateTime(Date updateTime) {
|
|
|
- this.updateTime = updateTime;
|
|
|
- }
|
|
|
-
|
|
|
}
|
|
|
|