三期内容优化

This commit is contained in:
2025-03-19 21:37:54 +08:00
parent aa64312441
commit ed7012e2dd
24 changed files with 671 additions and 96 deletions

View File

@@ -34,8 +34,34 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectVoPageToUser" resultType="com.ruoyi.oa.domain.vo.OaCustomerVo">
select oc.customer_id, nick_name,name, follow_up_status, contact_last_time, contact_last_content, contact_next_time, owner_user_id, owner_time, deal_status, mobile, telephone, qq, wechat, oc.email, area_id, detail_address, industry_id, level, source, oc.remark,oc.create_by, oc.create_time, oc.update_by, oc.update_time, oc.del_flag from oa_customer oc
left join fad_oa.sys_user su on oc.owner_user_id = su.user_id
select oc.customer_id,
nick_name,
name,
follow_up_status,
contact_last_time,
contact_last_content,
contact_next_time,
owner_user_id,
owner_time,
deal_status,
mobile,
telephone,
qq,
wechat,
oc.email,
area_id,
detail_address,
industry_id,
level,
source,
oc.remark,
oc.create_by,
oc.create_time,
oc.update_by,
oc.update_time,
oc.del_flag
from oa_customer oc
left join fad_oa.sys_user su on oc.owner_user_id = su.user_id
${ew.getCustomSqlSegment}
</select>