Browse Source

add曲目配置字段

liujunchi 3 years ago
parent
commit
5dc57b678b

+ 13 - 0
cooleshow-user/user-biz/src/main/java/com/yonge/cooleshow/biz/dal/entity/MusicSheet.java

@@ -170,10 +170,23 @@ public class MusicSheet implements Serializable {
     private String remark;  //备注,填写未通过审核的原因
 
 
+	@TableField("ext_config_json_")
+	@ApiModelProperty("曲目配置信息")
+	private String extConfigJson;
+
+
 	@TableField("del_flag_")
 	@ApiModelProperty(value = "假删除标识 0:未删除 1:已删除")
 	private Boolean delFlag;
 
+	public String getExtConfigJson() {
+		return extConfigJson;
+	}
+
+	public void setExtConfigJson(String extConfigJson) {
+		this.extConfigJson = extConfigJson;
+	}
+
 	public YesOrNoEnum getNotation() {
 		return notation;
 	}

+ 1 - 0
cooleshow-user/user-biz/src/main/resources/config/mybatis/MusicSheetMapper.xml

@@ -52,6 +52,7 @@
         t.xml_file_url_ as xmlFileUrl,
         t.has_beat_ as hasBeat,
         t.mp3_type_ as mp3Type,
+        t.ext_config_json_ as extConfigJson,
         t.create_time_ as createTime,
         t.create_by_ as createBy,
         t.update_time_ as updateTime,