Browse Source

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

anderx 7 years ago
parent
commit
5a961e4f25

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

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

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

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