Browse Source

update取消tenantsid参数过滤

master
郑贵龙 1 year ago
parent
commit
c308d63eda
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/infra/mapper/StaffMapper.xml

+ 2
- 2
demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/infra/mapper/StaffMapper.xml View File

@ -40,7 +40,7 @@
<if test="item.mobileNo != null">mobile_no = #{item.mobileNo},</if>
<if test="item.email != null">email = #{item.email},</if>
</trim>
where id = #{item.id} and `tenantsid`=#{tenantSid}
where id = #{item.id}
</foreach>
</update>
@ -51,7 +51,7 @@
<if test="item.tabStatus != null">tab_status = #{item.tabStatus},</if>
<if test="item.registerDate != null">register_date = #{item.registerDate},</if>
</trim>
where id = #{item.id} and `tenantsid`=#{tenantSid}
where id = #{item.id}
</foreach>
</update>


Loading…
Cancel
Save