|
@@ -28,6 +28,7 @@
|
|
|
<result column="update_by_" jdbcType="BIGINT" property="updateBy"/>
|
|
|
<result column="remark_" jdbcType="VARCHAR" property="remark"/>
|
|
|
<result column="notation_" jdbcType="VARCHAR" property="notation"/>
|
|
|
+ <result column="accompaniment_type_" jdbcType="VARCHAR" property="accompanimentType"/>
|
|
|
<result column="title_img_" jdbcType="VARCHAR" property="titleImg"/>
|
|
|
</resultMap>
|
|
|
|
|
@@ -62,6 +63,7 @@
|
|
|
t.audit_version_ as auditVersion,
|
|
|
t.source_type_ as sourceType,
|
|
|
t.submit_audit_time_ as submitAuditTime,
|
|
|
+ t.accompaniment_type_ as accompanimentType,
|
|
|
t.remark_ as remark,
|
|
|
t.title_img_ as titleImg,
|
|
|
t.reason_ as reason,
|
|
@@ -132,6 +134,9 @@
|
|
|
<if test="param.topFlag != null">
|
|
|
and t.top_flag_ = #{param.topFlag}
|
|
|
</if>
|
|
|
+ <if test="param.accompanimentType != null">
|
|
|
+ and t.accompaniment_type_ = #{param.accompanimentType}
|
|
|
+ </if>
|
|
|
|
|
|
</sql>
|
|
|
|
|
@@ -254,6 +259,7 @@
|
|
|
<result column="auditVersion" jdbcType="VARCHAR" property="auditVersion"/>
|
|
|
<result column="code" jdbcType="VARCHAR" property="code"/>
|
|
|
<result column="reason" jdbcType="VARCHAR" property="reason"/>
|
|
|
+ <result column="accompanimentType" jdbcType="VARCHAR" property="accompanimentType"/>
|
|
|
<result column="notation" jdbcType="VARCHAR" property="notation"/>
|
|
|
<result column="aiDefaultFrequency" jdbcType="VARCHAR" property="aiDefaultFrequency"/>
|
|
|
<collection property="background" ofType="com.yonge.cooleshow.biz.dal.entity.MusicSheetAccompaniment">
|
|
@@ -438,6 +444,7 @@
|
|
|
,ms.music_sheet_name_ as musicSheetName
|
|
|
,ms.composer_ as composer
|
|
|
,ms.title_img_ as titleImg
|
|
|
+ ,ms.accompaniment_type_ as accompanimentType
|
|
|
,ms.music_tag_ as musicTag
|
|
|
,(select group_concat(mt.name_) from music_tag mt
|
|
|
where find_in_set(mt.id_,ms.music_tag_) and mt.del_flag_ = 0 and mt.state_ = 1) as musicTagNames
|
|
@@ -475,6 +482,7 @@
|
|
|
select
|
|
|
ms.create_by_ as teacherId
|
|
|
,ms.title_img_ as titleImg
|
|
|
+ ,ms.accompaniment_type_ as accompanimentType
|
|
|
,su.username_ as username
|
|
|
,su.real_name_ as realName
|
|
|
,su.phone_ as phone
|