| | |
| | | <choose> |
| | | <when test="operationFlag==1"> |
| | | <foreach collection="pageParamUserList" item="item" separator=";"> |
| | | update db_app_sys.tb_page_param_user set 'show' = 1 where 'key' = #{item.key} and user_id = #{item.userId} and type = #{item.type} |
| | | update db_app_sys.tb_page_param_user set "show" = 1 where "key" = #{item.key} and user_id = #{item.userId} and type = #{item.type} |
| | | </foreach> |
| | | </when> |
| | | <otherwise> |
| | | <foreach collection="pageParamUserList" item="item" separator=";"> |
| | | update db_app_sys.tb_page_param_user set 'show' = 0 where 'key' = #{item.key} and user_id = #{item.userId} and type = #{item.type} |
| | | update db_app_sys.tb_page_param_user set "show" = 0 where "key" = #{item.key} and user_id = #{item.userId} and type = #{item.type} |
| | | </foreach> |
| | | </otherwise> |
| | | </choose> |