Browse Source

科技服务项目-项目管理-项目查询和项目管理的详情页面都要显示项目任务负责人的联系方式

anderx 7 years ago
parent
commit
49875ab3f3

+ 2 - 1
src/main/java/com/goafanti/common/mapper/TechProjectMapper.xml

@@ -757,7 +757,8 @@ from
 		a.deleted_sign as deletedSign,
 		a.task_comment as taskComment,
 		a.publish_status as publishStatus,
-		b.name as technicianName
+		b.name as technicianName,
+		b.mobile as technicianmobile
 	from
 		contract_task a left join admin b on
 		a.task_receiver = b.id

+ 7 - 0
src/main/java/com/goafanti/techproject/bo/TaskListBo.java

@@ -4,6 +4,7 @@ package com.goafanti.techproject.bo;
 public class TaskListBo{
 	private String taskId;
 	private String technicianName;
+	private String technicianmobile;
 	private String taskDistributionTimes;
 	private String taskNo;
 	private Integer taskStatus;
@@ -128,4 +129,10 @@ public class TaskListBo{
 	public void setSalesmanName(String salesmanName) {
 		this.salesmanName = salesmanName;
 	}
+	public String getTechnicianmobile() {
+		return technicianmobile;
+	}
+	public void setTechnicianmobile(String technicianmobile) {
+		this.technicianmobile = technicianmobile;
+	}
 }