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