Commit 2c03f454 authored by litengwei's avatar litengwei

双规小程序接口

parent c0cf4e54
...@@ -15,6 +15,26 @@ public class AppPointCheckRespone { ...@@ -15,6 +15,26 @@ public class AppPointCheckRespone {
private String pointNo; private String pointNo;
private int shortMinNumber;
private int shortMaxNumber;
public int getShortMinNumber() {
return shortMinNumber;
}
public void setShortMinNumber(int shortMinNumber) {
this.shortMinNumber = shortMinNumber;
}
public int getShortMaxNumber() {
return shortMaxNumber;
}
public void setShortMaxNumber(int shortMaxNumber) {
this.shortMaxNumber = shortMaxNumber;
}
public String getTaskStatus() { public String getTaskStatus() {
return taskStatus; return taskStatus;
} }
......
...@@ -16,6 +16,26 @@ public class PointCheckDetailBo { ...@@ -16,6 +16,26 @@ public class PointCheckDetailBo {
private String planName; private String planName;
private int shortMinNumber;
private int shortMaxNumber;
public int getShortMinNumber() {
return shortMinNumber;
}
public void setShortMinNumber(int shortMinNumber) {
this.shortMinNumber = shortMinNumber;
}
public int getShortMaxNumber() {
return shortMaxNumber;
}
public void setShortMaxNumber(int shortMaxNumber) {
this.shortMaxNumber = shortMaxNumber;
}
private long routeId; private long routeId;
private String departmentName; private String departmentName;
......
...@@ -1482,6 +1482,8 @@ public class PlanTaskServiceImpl implements IPlanTaskService { ...@@ -1482,6 +1482,8 @@ public class PlanTaskServiceImpl implements IPlanTaskService {
pointCheckRespone.setBeginTime(planPointInfo.getBeginTime()); pointCheckRespone.setBeginTime(planPointInfo.getBeginTime());
pointCheckRespone.setEndTime(planPointInfo.getEndTime()); pointCheckRespone.setEndTime(planPointInfo.getEndTime());
pointCheckRespone.setPlanName(planPointInfo.getPlanName()); pointCheckRespone.setPlanName(planPointInfo.getPlanName());
pointCheckRespone.setShortMaxNumber(planPointInfo.getShortMaxNumber());
pointCheckRespone.setShortMinNumber(planPointInfo.getShortMinNumber());
List<PointCheckDetailBo> pointInputs = planTaskMapper.getPointInputByRouteIdAndPointId(planPointInfo.getRouteId(), planPointInfo.getPointId()); List<PointCheckDetailBo> pointInputs = planTaskMapper.getPointInputByRouteIdAndPointId(planPointInfo.getRouteId(), planPointInfo.getPointId());
JSONObject appResponeMap = new JSONObject(); JSONObject appResponeMap = new JSONObject();
List<AppCheckInputRespone> appCheckInputResponeList = new ArrayList<AppCheckInputRespone>(); List<AppCheckInputRespone> appCheckInputResponeList = new ArrayList<AppCheckInputRespone>();
......
...@@ -679,7 +679,9 @@ ...@@ -679,7 +679,9 @@
ppt.user_id userId, ppt.user_id userId,
ppt.user_name userName, ppt.user_name userName,
pptd.status pointStatus, pptd.status pointStatus,
ppt.finish_status taskStatus ppt.finish_status taskStatus,
pp.shot_min_number shortMinNumber,
pp.shot_max_number shortMaxNumber
FROM FROM
p_plan_task_detail pptd p_plan_task_detail pptd
LEFT JOIN p_plan_task ppt ON pptd.task_no = ppt.id LEFT JOIN p_plan_task ppt ON pptd.task_no = ppt.id
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment