| | |
| | | resultMap="TemplateDeptResult"> |
| | | <include refid="selectTemplateDeptVo"/> |
| | | <where> |
| | | del_flag=0 |
| | | <if test="type != null "> |
| | | and type = #{type} |
| | | </if> |
| | |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <update id="deleteTemplateDeptByTemplateId" parameterType="com.smartor.domain.TemplateDept"> |
| | | update template_dept |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | del_flag =1 |
| | | </trim> |
| | | where tempid = #{tempid} and type=#{type} |
| | | </update> |
| | | |
| | | <update id="deleteTemplateDeptByIds" parameterType="String"> |
| | | update template_dept |
| | | <trim prefix="SET" suffixOverrides=","> |