gongyingshangxinxi yewuyuan

This commit is contained in:
houjishuang
2025-06-09 15:24:59 +08:00
parent 771c324c23
commit 0f738984dc
8 changed files with 20 additions and 17 deletions

View File

@ -138,7 +138,10 @@ mconfig:
service-name-resps: biz-service-ebtp-resps #标段应答文件
service-name-rsms: biz-service-ebtp-rsms #评审微服务
service-name-tender: biz-service-ebtp-tender #标段投标微服务
service-name-system: sys-manager-ebtp-project #系统管理微服务
service-name-agency: biz-service-ebtp-agency #招标代理库微服务
service-name-provider: biz-supplier-manage #供应商微服务
service-name-project: biz-service-ebtp-project #项目微服务
service-name-system: sys-manager-ebtp-project
wfSectionNo: '080'
wfSectionName: 标段重新评审审批单

View File

@ -38,13 +38,13 @@
<select id="selectByMainContactId" resultType="com.chinaunicom.zyhy.ebtp.supplier.base.dto.ContactDTO">
select
sub.id, sub.name, sub.phone, sub.email, sub.acount, sub.main, sub.status, sub.supplier_base_id
from cosco_supplier_contact mainc,cosco_supplier_base sub
sub.id, sub.`name`,sub.phone,sub.email, sub.`account`, sub.main, sub.`status`, sub.supplier_base_id
from cosco_supplier_contact mainc,cosco_supplier_contact sub
where mainc.supplier_base_id =sub.supplier_base_id
and mainc.main= '1' and sub.main='0'
and mainc.acount = #{searchVO.mainContactAccountId}
and mainc.`account` = #{searchVO.mainContactAccountId}
<if test="searchVO.name!=null and searchVO.name!=''">
and sub.name like concat('%', #{searchVO.name}, '%')
and sub.`name` like concat('%', #{searchVO.name}, '%')
</if>
</select>