- 在多个Mapper XML文件中添加LEFT JOIN credit_company表关联 - 扩展关键词搜索范围,支持通过公司名称进行搜索匹配 - 更新CreditNearbyCompany相关功能,支持按公司ID筛选和导入 - 修改CreditNearbyCompanyParam中companyId字段类型为String - 暂时注释掉纳税人识别号相关的搜索条件 - 统一各信用数据映射文件中的关键词搜索逻辑
90 lines
3.5 KiB
XML
90 lines
3.5 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.CreditSuspectedRelationshipMapper">
|
|
|
|
<!-- 关联查询sql -->
|
|
<sql id="selectSql">
|
|
SELECT a.*
|
|
FROM credit_suspected_relationship a
|
|
LEFT JOIN credit_company b ON a.company_id = b.id
|
|
<where>
|
|
<if test="param.id != null">
|
|
AND a.id = #{param.id}
|
|
</if>
|
|
<if test="param.name != null">
|
|
AND a.name LIKE CONCAT('%', #{param.name}, '%')
|
|
</if>
|
|
<if test="param.statusText != null">
|
|
AND a.status_text LIKE CONCAT('%', #{param.statusText}, '%')
|
|
</if>
|
|
<if test="param.legalPerson != null">
|
|
AND a.legal_person LIKE CONCAT('%', #{param.legalPerson}, '%')
|
|
</if>
|
|
<if test="param.registeredCapital != null">
|
|
AND a.registered_capital LIKE CONCAT('%', #{param.registeredCapital}, '%')
|
|
</if>
|
|
<if test="param.createDate != null">
|
|
AND a.create_date LIKE CONCAT('%', #{param.createDate}, '%')
|
|
</if>
|
|
<if test="param.relatedParty != null">
|
|
AND a.related_party LIKE CONCAT('%', #{param.relatedParty}, '%')
|
|
</if>
|
|
<if test="param.type != null">
|
|
AND a.type LIKE CONCAT('%', #{param.type}, '%')
|
|
</if>
|
|
<if test="param.detail != null">
|
|
AND a.detail LIKE CONCAT('%', #{param.detail}, '%')
|
|
</if>
|
|
<if test="param.url != null">
|
|
AND a.url LIKE CONCAT('%', #{param.url}, '%')
|
|
</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 = #{param.keywords}
|
|
)
|
|
</if>
|
|
</where>
|
|
</sql>
|
|
|
|
<!-- 分页查询 -->
|
|
<select id="selectPageRel" resultType="com.gxwebsoft.credit.entity.CreditSuspectedRelationship">
|
|
<include refid="selectSql"></include>
|
|
</select>
|
|
|
|
<!-- 查询全部 -->
|
|
<select id="selectListRel" resultType="com.gxwebsoft.credit.entity.CreditSuspectedRelationship">
|
|
<include refid="selectSql"></include>
|
|
</select>
|
|
|
|
</mapper>
|