|  | @@ -5,72 +5,69 @@
 | 
	
		
			
				|  |  |  不要修改此文件。所有改动将在下次重新自动生成时丢失。
 | 
	
		
			
				|  |  |  -->
 | 
	
		
			
				|  |  |  <mapper namespace="com.ym.mec.biz.dal.dao.MusicGroupBuildLogDao">
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | -	<resultMap type="com.ym.mec.biz.dal.entity.MusicGroupBuildLog" id="MusicGroupBuildLog">
 | 
	
		
			
				|  |  | -		<result column="id_" property="id" />
 | 
	
		
			
				|  |  | -		<result column="music_group_id_" property="musicGroupId" />
 | 
	
		
			
				|  |  | -		<result column="event_" property="event" />
 | 
	
		
			
				|  |  | -		<result column="operator_" property="operator" />
 | 
	
		
			
				|  |  | -		<result column="memo_" property="memo" />
 | 
	
		
			
				|  |  | -		<result column="create_time_" property="createTime" />
 | 
	
		
			
				|  |  | -	</resultMap>
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | -	<!-- 根据主键查询一条记录 -->
 | 
	
		
			
				|  |  | -	<select id="get" resultMap="MusicGroupBuildLog" >
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <resultMap type="com.ym.mec.biz.dal.entity.MusicGroupBuildLog" id="MusicGroupBuildLog">
 | 
	
		
			
				|  |  | +        <result column="id_" property="id"/>
 | 
	
		
			
				|  |  | +        <result column="music_group_id_" property="musicGroupId"/>
 | 
	
		
			
				|  |  | +        <result column="event_" property="event"/>
 | 
	
		
			
				|  |  | +        <result column="operator_" property="operator"/>
 | 
	
		
			
				|  |  | +        <result column="memo_" property="memo"/>
 | 
	
		
			
				|  |  | +        <result column="create_time_" property="createTime"/>
 | 
	
		
			
				|  |  | +    </resultMap>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <!-- 根据主键查询一条记录 -->
 | 
	
		
			
				|  |  | +    <select id="get" resultMap="MusicGroupBuildLog">
 | 
	
		
			
				|  |  |  		SELECT * FROM music_group_build_log WHERE id_ = #{id} 
 | 
	
		
			
				|  |  |  	</select>
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | -	<!-- 全查询 -->
 | 
	
		
			
				|  |  | -	<select id="findAll" resultMap="MusicGroupBuildLog">
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <!-- 全查询 -->
 | 
	
		
			
				|  |  | +    <select id="findAll" resultMap="MusicGroupBuildLog">
 | 
	
		
			
				|  |  |  		SELECT * FROM music_group_build_log ORDER BY id_
 | 
	
		
			
				|  |  |  	</select>
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | -	<!-- 向数据库增加一条记录 -->
 | 
	
		
			
				|  |  | -	<insert id="insert" parameterType="com.ym.mec.biz.dal.entity.MusicGroupBuildLog" useGeneratedKeys="true" keyColumn="id" keyProperty="id">
 | 
	
		
			
				|  |  | -		<!--
 | 
	
		
			
				|  |  | -		<selectKey resultClass="int" keyProperty="id" > 
 | 
	
		
			
				|  |  | -		SELECT SEQ_WSDEFINITION_ID.nextval AS ID FROM DUAL 
 | 
	
		
			
				|  |  | -		</selectKey>
 | 
	
		
			
				|  |  | -		-->
 | 
	
		
			
				|  |  | -		INSERT INTO music_group_build_log (id_,music_group_id_,event_,operator_,memo_,create_time_) VALUES(#{id},#{musicGroupId},#{event},#{operator},#{memo},#{createTime})
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <!-- 向数据库增加一条记录 -->
 | 
	
		
			
				|  |  | +    <insert id="insert" parameterType="com.ym.mec.biz.dal.entity.MusicGroupBuildLog" useGeneratedKeys="true"
 | 
	
		
			
				|  |  | +            keyColumn="id" keyProperty="id">
 | 
	
		
			
				|  |  | +		INSERT INTO music_group_build_log (music_group_id_,event_,operator_,memo_,create_time_)
 | 
	
		
			
				|  |  | +		VALUES(#{musicGroupId},#{event},#{operator},#{memo},now())
 | 
	
		
			
				|  |  |  	</insert>
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | -	<!-- 根据主键查询一条记录 -->
 | 
	
		
			
				|  |  | -	<update id="update" parameterType="com.ym.mec.biz.dal.entity.MusicGroupBuildLog">
 | 
	
		
			
				|  |  | -		UPDATE music_group_build_log <set>
 | 
	
		
			
				|  |  | -<if test="operator != null">
 | 
	
		
			
				|  |  | -operator_ = #{operator},
 | 
	
		
			
				|  |  | -</if>
 | 
	
		
			
				|  |  | -<if test="event != null">
 | 
	
		
			
				|  |  | -event_ = #{event},
 | 
	
		
			
				|  |  | -</if>
 | 
	
		
			
				|  |  | -<if test="id != null">
 | 
	
		
			
				|  |  | -id_ = #{id},
 | 
	
		
			
				|  |  | -</if>
 | 
	
		
			
				|  |  | -<if test="memo != null">
 | 
	
		
			
				|  |  | -memo_ = #{memo},
 | 
	
		
			
				|  |  | -</if>
 | 
	
		
			
				|  |  | -<if test="musicGroupId != null">
 | 
	
		
			
				|  |  | -music_group_id_ = #{musicGroupId},
 | 
	
		
			
				|  |  | -</if>
 | 
	
		
			
				|  |  | -<if test="createTime != null">
 | 
	
		
			
				|  |  | -create_time_ = #{createTime},
 | 
	
		
			
				|  |  | -</if>
 | 
	
		
			
				|  |  | -</set> WHERE id_ = #{id} 
 | 
	
		
			
				|  |  | -	</update>
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | -	<!-- 根据主键删除一条记录 -->
 | 
	
		
			
				|  |  | -	<delete id="delete" >
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <!-- 根据主键查询一条记录 -->
 | 
	
		
			
				|  |  | +    <update id="update" parameterType="com.ym.mec.biz.dal.entity.MusicGroupBuildLog">
 | 
	
		
			
				|  |  | +        UPDATE music_group_build_log
 | 
	
		
			
				|  |  | +        <set>
 | 
	
		
			
				|  |  | +            <if test="operator != null">
 | 
	
		
			
				|  |  | +                operator_ = #{operator},
 | 
	
		
			
				|  |  | +            </if>
 | 
	
		
			
				|  |  | +            <if test="event != null">
 | 
	
		
			
				|  |  | +                event_ = #{event},
 | 
	
		
			
				|  |  | +            </if>
 | 
	
		
			
				|  |  | +            <if test="memo != null">
 | 
	
		
			
				|  |  | +                memo_ = #{memo},
 | 
	
		
			
				|  |  | +            </if>
 | 
	
		
			
				|  |  | +            <if test="musicGroupId != null">
 | 
	
		
			
				|  |  | +                music_group_id_ = #{musicGroupId},
 | 
	
		
			
				|  |  | +            </if>
 | 
	
		
			
				|  |  | +        </set>
 | 
	
		
			
				|  |  | +        WHERE id_ = #{id}
 | 
	
		
			
				|  |  | +    </update>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <!-- 根据主键删除一条记录 -->
 | 
	
		
			
				|  |  | +    <delete id="delete">
 | 
	
		
			
				|  |  |  		DELETE FROM music_group_build_log WHERE id_ = #{id} 
 | 
	
		
			
				|  |  |  	</delete>
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | -	<!-- 分页查询 -->
 | 
	
		
			
				|  |  | -	<select id="queryPage" resultMap="MusicGroupBuildLog" parameterType="map">
 | 
	
		
			
				|  |  | -		SELECT * FROM music_group_build_log ORDER BY id_ <include refid="global.limit"/>
 | 
	
		
			
				|  |  | -	</select>
 | 
	
		
			
				|  |  | -	
 | 
	
		
			
				|  |  | -	<!-- 查询当前表的总记录数 -->
 | 
	
		
			
				|  |  | -	<select id="queryCount" resultType="int">
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <!-- 分页查询 -->
 | 
	
		
			
				|  |  | +    <select id="queryPage" resultMap="MusicGroupBuildLog" parameterType="map">
 | 
	
		
			
				|  |  | +        SELECT * FROM music_group_build_log ORDER BY id_
 | 
	
		
			
				|  |  | +        <include refid="global.limit"/>
 | 
	
		
			
				|  |  | +    </select>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    <!-- 查询当前表的总记录数 -->
 | 
	
		
			
				|  |  | +    <select id="queryCount" resultType="int">
 | 
	
		
			
				|  |  |  		SELECT COUNT(*) FROM music_group_build_log
 | 
	
		
			
				|  |  |  	</select>
 | 
	
		
			
				|  |  | +    <select id="findById" resultMap="MusicGroupBuildLog">
 | 
	
		
			
				|  |  | +		SELECT * FROM music_group_build_log WHERE music_group_id_ = #{musicGroupId}
 | 
	
		
			
				|  |  | +	</select>
 | 
	
		
			
				|  |  |  </mapper>
 |