备注字段

This commit is contained in:
lSun 2024-12-02 21:28:40 +08:00
parent be4aeae9cd
commit 768676bd01
1 changed files with 2 additions and 2 deletions

View File

@ -72,11 +72,11 @@
</delete>
<insert id="insertOrgChange">
insert into org_change(user_id, old_org_id, new_org_id,is_change_att_group, change_effective_date, is_check
insert into org_change(user_id, old_org_id, new_org_id,is_change_att_group, change_effective_date, is_check,remark
<if test="oldAttGroup != null and oldAttGroup != ''">,old_att_group</if>
<if test="newAttGroup != null and newAttGroup != ''">,new_att_group</if>
)
values (#{userId},#{oldOrgId},#{newOrgId},#{isChangeAttGroup},#{changeEffectiveDate},#{isCheck}
values (#{userId},#{oldOrgId},#{newOrgId},#{isChangeAttGroup},#{changeEffectiveDate},#{isCheck},#{remark}
<if test="oldAttGroup != null and oldAttGroup != ''">,#{oldAttGroup}</if>
<if test="newAttGroup != null and newAttGroup != ''">,#{newAttGroup}</if>
)