审核模块相关接口修改
This commit is contained in:
@@ -204,6 +204,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
UPDATE audit_signature
|
||||
<set>
|
||||
<if test="auditResult != null">audit_result = #{auditResult},</if>
|
||||
<if test="approverSignUrl != null">approver_sign_url = #{approverSignUrl},</if>
|
||||
<if test="approverId != null">approver_id = #{approverId},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
|
||||
@@ -21,6 +21,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="remark" column="remark" />
|
||||
<result property="xj" column="xj" />
|
||||
<result property="xmNo" column="xm_no" />
|
||||
<result property="gysJhId" column="gys_jh_id"/>
|
||||
<result property="xmMs" column="xm_ms" />
|
||||
<result property="xmNoCk" column="xm_no_ck"/>
|
||||
<result property="xmMsCk" column="xm_ms_ck"/>
|
||||
@@ -368,6 +369,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
GROUP BY r.bill_no
|
||||
</select>
|
||||
|
||||
<select id="selectRkInfoListByBillNo" resultMap="RkInfoResult"
|
||||
parameterType="java.lang.String">
|
||||
SELECT
|
||||
*
|
||||
FROM rk_info
|
||||
WHERE is_delete = '0'
|
||||
AND bill_no = #{billNo}
|
||||
</select>
|
||||
|
||||
<update id="updateRkInfo" parameterType="RkInfo">
|
||||
update rk_info
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
|
||||
Reference in New Issue
Block a user