作者 朱兆平

bug-fix: 修复组织机构更新缺少了对新增字段供应商类型的更新

... ... @@ -210,6 +210,9 @@ WHERE
<if test="mqcode != null">
mq_code = #{mqcode,jdbcType=VARCHAR},
</if>
<if test="orgtype !=null and orgtype!=''">
org_type = #{orgtype,jdbcType=VARCHAR},
</if>
</set>
where role_id = #{roleId,jdbcType=INTEGER}
</update>
... ... @@ -225,6 +228,7 @@ WHERE
business_license = #{businessLicense,jdbcType=VARCHAR},
departmentId = #{departmentid,jdbcType=VARCHAR},
mq_code = #{mqcode,jdbcType=VARCHAR},
org_type = #{orgtype,jdbcType=VARCHAR}
where role_id = #{roleId,jdbcType=INTEGER}
</update>
... ...