Compare commits

..

No commits in common. "3b68b1a111c5d409b3b971a6b05465cfb38d3b2e" and "aa7e39b84f0092fde852e6790da0303b244de796" have entirely different histories.

View File

@ -65,7 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectAgreementById" parameterType="Long" resultMap="AgreementResult"> <select id="selectAgreementById" parameterType="Long" resultMap="AgreementResult">
<include refid="selectAgreementVo"/> <include refid="selectAgreementVo"/>
where bag.id = #{id} where id = #{id}
</select> </select>
<select id="selectDistinct" resultType="com.ruoyi.bst.agreement.domain.AgreementVO"> <select id="selectDistinct" resultType="com.ruoyi.bst.agreement.domain.AgreementVO">
<include refid="selectAgreementVo"/> <include refid="selectAgreementVo"/>
@ -237,11 +237,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</update> </update>
<update id="updateAgreement" parameterType="Agreement"> <update id="updateAgreement" parameterType="Agreement">
update bst_agreement bag update bst_agreement
<trim prefix="SET" suffixOverrides=","> <trim prefix="SET" suffixOverrides=",">
<include refid="updateColumns"/> <include refid="updateColumns"/>
</trim> </trim>
where bag.id = #{data.id} where id = #{data.id}
</update> </update>
<sql id="updateColumns"> <sql id="updateColumns">