Commit 2c03f454 authored by litengwei's avatar litengwei

双规小程序接口

parent c0cf4e54
......@@ -15,6 +15,26 @@ public class AppPointCheckRespone {
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() {
return taskStatus;
}
......
......@@ -15,6 +15,26 @@ public class PointCheckDetailBo {
private String taskStatus;
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;
......
......@@ -1482,6 +1482,8 @@ public class PlanTaskServiceImpl implements IPlanTaskService {
pointCheckRespone.setBeginTime(planPointInfo.getBeginTime());
pointCheckRespone.setEndTime(planPointInfo.getEndTime());
pointCheckRespone.setPlanName(planPointInfo.getPlanName());
pointCheckRespone.setShortMaxNumber(planPointInfo.getShortMaxNumber());
pointCheckRespone.setShortMinNumber(planPointInfo.getShortMinNumber());
List<PointCheckDetailBo> pointInputs = planTaskMapper.getPointInputByRouteIdAndPointId(planPointInfo.getRouteId(), planPointInfo.getPointId());
JSONObject appResponeMap = new JSONObject();
List<AppCheckInputRespone> appCheckInputResponeList = new ArrayList<AppCheckInputRespone>();
......
......@@ -679,7 +679,9 @@
ppt.user_id userId,
ppt.user_name userName,
pptd.status pointStatus,
ppt.finish_status taskStatus
ppt.finish_status taskStatus,
pp.shot_min_number shortMinNumber,
pp.shot_max_number shortMaxNumber
FROM
p_plan_task_detail pptd
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