Commit 673f8bc5 authored by tianbo's avatar tianbo

fix(tcm): 企业管理列表增加企业来源筛选(陕西省内企业、省外企业)

parent b11dcf48
......@@ -165,12 +165,14 @@
</choose>
</if>
<if test="tzBaseEnterpriseInfoDto.address!=null and tzBaseEnterpriseInfoDto.address!='' ">
AND address LIKE CONCAT('%',#{tzBaseEnterpriseInfoDto.address},'%')
AND address LIKE CONCAT('%', #{tzBaseEnterpriseInfoDto.address},'%')
</if>
<if test="tzBaseEnterpriseInfoDto.regulatoryLabels!=null and tzBaseEnterpriseInfoDto.regulatoryLabels!='' ">
AND regulatory_labels LIKE CONCAT('%',#{tzBaseEnterpriseInfoDto.regulatoryLabels},'%')
AND regulatory_labels LIKE CONCAT('%', #{tzBaseEnterpriseInfoDto.regulatoryLabels},'%')
</if>
<if test="tzBaseEnterpriseInfoDto.dataSources!=null and tzBaseEnterpriseInfoDto.dataSources!='' ">
AND data_sources LIKE CONCAT('%', #{tzBaseEnterpriseInfoDto.dataSources},'%')
</if>
<if test="tzBaseEnterpriseInfoDto.regulatoryLabelList != null and tzBaseEnterpriseInfoDto.regulatoryLabelList.size() > 0">
AND (
<if test="tzBaseEnterpriseInfoDto.regulatoryLabelList.contains('无标签')">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment