|
|
|
@ -3,7 +3,8 @@ |
|
|
|
<mapper namespace="com.xujie.sys.modules.project.mapper.ProjectMapper"> |
|
|
|
|
|
|
|
<select id="queryProject" resultType="com.xujie.sys.modules.project.entity.Project"> |
|
|
|
select p.project_category, |
|
|
|
select p.id as projectId, |
|
|
|
p.project_category, |
|
|
|
p.project_name, |
|
|
|
p.status, |
|
|
|
p.project_source, |
|
|
|
@ -37,7 +38,8 @@ |
|
|
|
p.project_no, |
|
|
|
b.bu_desc, |
|
|
|
b.id as buId, |
|
|
|
c.customer_desc |
|
|
|
c.customer_desc, |
|
|
|
CKT_MES_II_REAL.dbo.plm_get_customer_desc(p.site,p.final_customer_id) as final_customer_name |
|
|
|
from plm_project_info p |
|
|
|
left join BU b on p.bu_no = b.bu_no and p.site = b.site |
|
|
|
left join plm_customer_information c on p.site = c.site and p.customer_no = c.customer_no |
|
|
|
|