|
@@ -0,0 +1,280 @@
|
|
|
+package com.yonge.cooleshow.biz.dal.entity;
|
|
|
+
|
|
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 对应数据库表(music_sheet):
|
|
|
+ */
|
|
|
+public class MusicSheet {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "主键",required = false)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "曲谱名称",required = false)
|
|
|
+ private String musicName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "曲谱来源(0:平台;非0:老师ID)",required = false)
|
|
|
+ private Integer musicSource;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "作曲人",required = false)
|
|
|
+ private String composer;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "曲谱声部(适用的乐器,可能是多个,用逗号分隔)",required = false)
|
|
|
+ private String musicInstrument;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "曲谱音频文件类型(midi;mp3)",required = false)
|
|
|
+ private String audioType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "曲谱标签(可以是多个标签,用逗号分隔)",required = false)
|
|
|
+ private String musicTag;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "默认播放速度",required = false)
|
|
|
+ private Integer playSpeed;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否可以评测",required = false)
|
|
|
+ private boolean canEvaluate;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否展示指法",required = false)
|
|
|
+ private boolean showFingering;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "收费类型(0:免费;1:会员;2:单曲收费)",required = false)
|
|
|
+ private boolean chargeType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "审核状态",required = false)
|
|
|
+ private boolean auditStatus;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "排序号",required = false)
|
|
|
+ private Integer orderNo;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否置顶",required = false)
|
|
|
+ private boolean topFlag;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否热门曲谱",required = false)
|
|
|
+ private boolean hotFlag;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "曲谱价格(整数)",required = false)
|
|
|
+ private Integer musicPrice;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "音频文件存储路径",required = false)
|
|
|
+ private String audioFileUrl;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "XML文件存储路径",required = false)
|
|
|
+ private String xmlFileUrl;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "MP3是否自带节拍器(0:不带;1:带节拍器)",required = false)
|
|
|
+ private boolean mp3HasBeat;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建时间",required = false)
|
|
|
+ private java.util.Date createTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建人(老师或者是后台平台用户)",required = false)
|
|
|
+ private Integer createUser;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "更新时间",required = false)
|
|
|
+ private java.util.Date updateTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "更新人(老师或者是后台平台用户)",required = false)
|
|
|
+ private Integer updateUser;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "备注",required = false)
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ public void setId(Long id){
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getId(){
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMusicName(String musicName){
|
|
|
+ this.musicName = musicName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMusicName(){
|
|
|
+ return this.musicName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMusicSource(Integer musicSource){
|
|
|
+ this.musicSource = musicSource;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMusicSource(){
|
|
|
+ return this.musicSource;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setComposer(String composer){
|
|
|
+ this.composer = composer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getComposer(){
|
|
|
+ return this.composer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMusicInstrument(String musicInstrument){
|
|
|
+ this.musicInstrument = musicInstrument;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMusicInstrument(){
|
|
|
+ return this.musicInstrument;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAudioType(String audioType){
|
|
|
+ this.audioType = audioType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAudioType(){
|
|
|
+ return this.audioType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMusicTag(String musicTag){
|
|
|
+ this.musicTag = musicTag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMusicTag(){
|
|
|
+ return this.musicTag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlaySpeed(Integer playSpeed){
|
|
|
+ this.playSpeed = playSpeed;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPlaySpeed(){
|
|
|
+ return this.playSpeed;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCanEvaluate(boolean canEvaluate){
|
|
|
+ this.canEvaluate = canEvaluate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isCanEvaluate(){
|
|
|
+ return this.canEvaluate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShowFingering(boolean showFingering){
|
|
|
+ this.showFingering = showFingering;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isShowFingering(){
|
|
|
+ return this.showFingering;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setChargeType(boolean chargeType){
|
|
|
+ this.chargeType = chargeType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isChargeType(){
|
|
|
+ return this.chargeType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAuditStatus(boolean auditStatus){
|
|
|
+ this.auditStatus = auditStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isAuditStatus(){
|
|
|
+ return this.auditStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderNo(Integer orderNo){
|
|
|
+ this.orderNo = orderNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOrderNo(){
|
|
|
+ return this.orderNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTopFlag(boolean topFlag){
|
|
|
+ this.topFlag = topFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isTopFlag(){
|
|
|
+ return this.topFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHotFlag(boolean hotFlag){
|
|
|
+ this.hotFlag = hotFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isHotFlag(){
|
|
|
+ return this.hotFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMusicPrice(Integer musicPrice){
|
|
|
+ this.musicPrice = musicPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMusicPrice(){
|
|
|
+ return this.musicPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAudioFileUrl(String audioFileUrl){
|
|
|
+ this.audioFileUrl = audioFileUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAudioFileUrl(){
|
|
|
+ return this.audioFileUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setXmlFileUrl(String xmlFileUrl){
|
|
|
+ this.xmlFileUrl = xmlFileUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getXmlFileUrl(){
|
|
|
+ return this.xmlFileUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMp3HasBeat(boolean mp3HasBeat){
|
|
|
+ this.mp3HasBeat = mp3HasBeat;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isMp3HasBeat(){
|
|
|
+ return this.mp3HasBeat;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(java.util.Date createTime){
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getCreateTime(){
|
|
|
+ return this.createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateUser(Integer createUser){
|
|
|
+ this.createUser = createUser;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCreateUser(){
|
|
|
+ return this.createUser;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(java.util.Date updateTime){
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getUpdateTime(){
|
|
|
+ return this.updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateUser(Integer updateUser){
|
|
|
+ this.updateUser = updateUser;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getUpdateUser(){
|
|
|
+ return this.updateUser;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark){
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRemark(){
|
|
|
+ return this.remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return ToStringBuilder.reflectionToString(this);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|