diff --git a/ruoyi-sip/src/main/java/com/ruoyi/sip/domain/ProjectInfo.java b/ruoyi-sip/src/main/java/com/ruoyi/sip/domain/ProjectInfo.java
index 8b622239..1f54a7c3 100644
--- a/ruoyi-sip/src/main/java/com/ruoyi/sip/domain/ProjectInfo.java
+++ b/ruoyi-sip/src/main/java/com/ruoyi/sip/domain/ProjectInfo.java
@@ -42,6 +42,8 @@ public class ProjectInfo extends BaseEntity
/** 客户名称 */
@Excel(name = "客户名称")
private String customerName;
+ private String customerUserName;
+ private String customerPhone;
/** 行业 */
@Excel(name = "行业")
diff --git a/ruoyi-sip/src/main/resources/mapper/sip/ProjectInfoMapper.xml b/ruoyi-sip/src/main/resources/mapper/sip/ProjectInfoMapper.xml
index d57c4bde..25a17777 100644
--- a/ruoyi-sip/src/main/resources/mapper/sip/ProjectInfoMapper.xml
+++ b/ruoyi-sip/src/main/resources/mapper/sip/ProjectInfoMapper.xml
@@ -37,7 +37,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select id, project_code, project_name,bg_property, customer_code, customer_name, industry_type, agent_code, project_stage, project_grasp_degree, hz_support_user, operate_institution
, partner_code, partner_name, contact_way, estimated_amount, currency_type, estimated_order_time, estimated_deliver_time, competitor, country_product, server_configuration
- , key_problem, project_desc, create_by, create_time, update_by, update_time from project_info t1
+ , key_problem, project_desc, create_by, create_time, update_by, update_time,customer_user_name,customer_phone from project_info t1
select t1.id,
@@ -68,6 +68,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
t1.create_time,
t1.update_by,
t1.update_time,
+ t1.customer_user_name,t1.customer_phone,
t2.agent_name,
t3.user_name as hz_support_user_name
from project_info t1
@@ -172,6 +173,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
project_name,
customer_code,
customer_name,
+ customer_user_name,
+ customer_phone,
industry_type,
bg_property,
agent_code,
@@ -201,6 +204,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{projectName},
#{customerCode},
#{customerName},
+ #{customerUserName},
+ #{customerPhone},
#{industryType},
#{bgProperty},
#{agentCode},
@@ -234,6 +239,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
project_name = #{projectName},
customer_code = #{customerCode},
customer_name = #{customerName},
+ customer_user_name=#{customerUserName},
+ customer_phone=#{customerPhone},
bg_property=#{bgProperty},
industry_type = #{industryType},
agent_code = #{agentCode},