| | |
| | | <include refid="selectCheckTemplateVo"/> |
| | | <where> |
| | | <if test="templateName != null and templateName != ''"> and template_name like concat('%', #{templateName}, '%')</if> |
| | | <if test="adjustCoefficient != null "> and adjust_coefficient = #{adjustCoefficient}</if> |
| | | <if test="adjustWay != null and adjustWay != ''"> and adjust_way = #{adjustWay}</if> |
| | | <if test="examineCategory != null "> and examine_category = #{examineCategory}</if> |
| | | <if test="status != null and status != ''"> and status = #{status}</if> |
| | | <if test="deptId != null and deptId != ''"> and dept_id = #{deptId}</if> |
| | | </where> |
| | | </select> |
| | | |