- 在CreditAdministrativeLicenseMapper中添加code字段搜索 - 在CreditBankruptcyMapper中添加code字段搜索 - 在CreditBranchMapper中添加name和curator字段搜索 - 在CreditHistoricalLegalPersonMapper中添加name字段搜索 - 在CreditJudiciaryMapper中添加code字段搜索 - 在CreditPatentMapper中添加public_no和register_no字段搜索 - 在CreditSuspectedRelationshipMapper中添加name字段搜索
84 lines
3.2 KiB
XML
84 lines
3.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.gxwebsoft.credit.mapper.CreditBankruptcyMapper">
|
|
|
|
<!-- 关联查询sql -->
|
|
<sql id="selectSql">
|
|
SELECT a.*, b.name AS companyName, u.real_name AS realName
|
|
FROM credit_bankruptcy a
|
|
LEFT JOIN credit_company b ON a.company_id = b.id
|
|
LEFT JOIN gxwebsoft_core.sys_user u ON a.user_id = u.user_id
|
|
|
|
<where>
|
|
<if test="param.id != null">
|
|
AND a.id = #{param.id}
|
|
</if>
|
|
<if test="param.code != null">
|
|
AND a.code LIKE CONCAT('%', #{param.code}, '%')
|
|
</if>
|
|
<if test="param.type != null">
|
|
AND a.type LIKE CONCAT('%', #{param.type}, '%')
|
|
</if>
|
|
<if test="param.party != null">
|
|
AND a.party LIKE CONCAT('%', #{param.party}, '%')
|
|
</if>
|
|
<if test="param.url != null">
|
|
AND a.url LIKE CONCAT('%', #{param.url}, '%')
|
|
</if>
|
|
<if test="param.court != null">
|
|
AND a.court LIKE CONCAT('%', #{param.court}, '%')
|
|
</if>
|
|
<if test="param.publicDate != null">
|
|
AND a.public_date LIKE CONCAT('%', #{param.publicDate}, '%')
|
|
</if>
|
|
<if test="param.comments != null">
|
|
AND a.comments LIKE CONCAT('%', #{param.comments}, '%')
|
|
</if>
|
|
<if test="param.companyId != null">
|
|
AND a.company_id = #{param.companyId}
|
|
</if>
|
|
<if test="param.recommend != null">
|
|
AND a.recommend = #{param.recommend}
|
|
</if>
|
|
<if test="param.sortNumber != null">
|
|
AND a.sort_number = #{param.sortNumber}
|
|
</if>
|
|
<if test="param.status != null">
|
|
AND a.status = #{param.status}
|
|
</if>
|
|
<if test="param.deleted != null">
|
|
AND a.deleted = #{param.deleted}
|
|
</if>
|
|
<if test="param.deleted == null">
|
|
AND a.deleted = 0
|
|
</if>
|
|
<if test="param.userId != null">
|
|
AND a.user_id = #{param.userId}
|
|
</if>
|
|
<if test="param.createTimeStart != null">
|
|
AND a.create_time >= #{param.createTimeStart}
|
|
</if>
|
|
<if test="param.createTimeEnd != null">
|
|
AND a.create_time <= #{param.createTimeEnd}
|
|
</if>
|
|
<if test="param.keywords != null">
|
|
AND (a.comments LIKE CONCAT('%', #{param.keywords}, '%')
|
|
OR b.name LIKE CONCAT('%', #{param.keywords}, '%')
|
|
OR a.code LIKE CONCAT('%', #{param.keywords}, '%')
|
|
)
|
|
</if>
|
|
</where>
|
|
</sql>
|
|
|
|
<!-- 分页查询 -->
|
|
<select id="selectPageRel" resultType="com.gxwebsoft.credit.entity.CreditBankruptcy">
|
|
<include refid="selectSql"></include>
|
|
</select>
|
|
|
|
<!-- 查询全部 -->
|
|
<select id="selectListRel" resultType="com.gxwebsoft.credit.entity.CreditBankruptcy">
|
|
<include refid="selectSql"></include>
|
|
</select>
|
|
|
|
</mapper>
|