Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
2c03f454
Commit
2c03f454
authored
Oct 25, 2023
by
litengwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
双规小程序接口
parent
c0cf4e54
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
1 deletion
+45
-1
AppPointCheckRespone.java
...mos/patrol/core/common/response/AppPointCheckRespone.java
+20
-0
PointCheckDetailBo.java
...os/patrol/business/entity/mybatis/PointCheckDetailBo.java
+20
-0
PlanTaskServiceImpl.java
...mos/patrol/business/service/impl/PlanTaskServiceImpl.java
+2
-0
dbTemplate_plan_task.xml
...rol/src/main/resources/db/mapper/dbTemplate_plan_task.xml
+3
-1
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-patrol-api/src/main/java/com/yeejoin/amos/patrol/core/common/response/AppPointCheckRespone.java
View file @
2c03f454
...
...
@@ -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
;
}
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-patrol-biz/src/main/java/com/yeejoin/amos/patrol/business/entity/mybatis/PointCheckDetailBo.java
View file @
2c03f454
...
...
@@ -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
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-patrol-biz/src/main/java/com/yeejoin/amos/patrol/business/service/impl/PlanTaskServiceImpl.java
View file @
2c03f454
...
...
@@ -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
>();
...
...
amos-boot-system-patrol/src/main/resources/db/mapper/dbTemplate_plan_task.xml
View file @
2c03f454
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment