|
@@ -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;
|
|
|
}
|