| | |
| | | ) |
| | | </select> |
| | | |
| | | <select id="page" resultType="com.ruoyi.system.model.TContract"> |
| | | select * from t_contract |
| | | <where> |
| | | <if test="query.partyTwoName != null and query.partyTwoName != ''"> |
| | | and party_two_name like concat('%',#{query.partyTwoName},'%') |
| | | </if> |
| | | <if test="query.contractNumber != null and query.contractNumber != ''"> |
| | | and contract_number like concat('%',#{query.contractNumber},'%') |
| | | </if> |
| | | <if test="query.contractName != null and query.contractName != ''"> |
| | | and contract_name like concat('%',#{query.contractName},'%') |
| | | </if> |
| | | <if test="query.status != null"> |
| | | and status = #{query.status} |
| | | </if> |
| | | <if test="query.tenantId != null"> |
| | | and tenant_id = #{query.tenantId} |
| | | </if> |
| | | <if test="query.statuses != null and query.statuses.size()>0"> |
| | | and status in |
| | | <foreach collection="query.statuses" item="item" open="(" separator="," close=")"> |
| | | #{item} |
| | | </foreach> |
| | | </if> |
| | | <if test='query.businessDeptId!=null and query.businessDeptId !="" and query.businessDeptId != "0"'> |
| | | and business_dept_id = #{query.businessDeptId} |
| | | </if> |
| | | AND disabled = ${@com.ruoyi.common.enums.DisabledEnum@NO.getCode()} |
| | | </where> |
| | | order by create_time desc |
| | | </select> |
| | | </mapper> |