user_id, org_id
where 1=1
and `user_id` ${userIdOperator} #{userId}
and `org_id` ${orgIdOperator} #{orgId}
insert into TR_USER_ORG()
values (#{userId}, #{orgId})
update TR_USER_ORG
set `org_id` = #{orgId}
where `user_id` = #{userId}
update TR_USER_ORG
org_id = #{orgId},
where user_id = #{userId}
delete from TR_USER_ORG
where user_id = #{value}
insert into TR_USER_ORG()values
(#{ur.userId}, #{ur.orgId})