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
a57335ff
Commit
a57335ff
authored
Nov 17, 2023
by
lisong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改计划执行记录导出bug
parent
aae53d68
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
8 deletions
+21
-8
pom.xml
...t-module-tzspatrol/amos-boot-module-tzspatrol-api/pom.xml
+6
-0
pom.xml
...t-module-tzspatrol/amos-boot-module-tzspatrol-biz/pom.xml
+6
-0
PlanTaskVo.java
.../java/com/yeejoin/amos/patrol/business/vo/PlanTaskVo.java
+9
-8
No files found.
amos-boot-system-tzs/amos-boot-module-tzspatrol/amos-boot-module-tzspatrol-api/pom.xml
View file @
a57335ff
...
@@ -39,6 +39,12 @@
...
@@ -39,6 +39,12 @@
<artifactId>
jsoup
</artifactId>
<artifactId>
jsoup
</artifactId>
<version>
1.11.2
</version>
<version>
1.11.2
</version>
</dependency>
</dependency>
<dependency>
<groupId>
cn.afterturn
</groupId>
<artifactId>
easypoi-annotation
</artifactId>
<version>
4.0.0
</version>
<scope>
compile
</scope>
</dependency>
</dependencies>
</dependencies>
</project>
</project>
amos-boot-system-tzs/amos-boot-module-tzspatrol/amos-boot-module-tzspatrol-biz/pom.xml
View file @
a57335ff
...
@@ -162,6 +162,12 @@
...
@@ -162,6 +162,12 @@
<artifactId>
vastbase-jdbc
</artifactId>
<artifactId>
vastbase-jdbc
</artifactId>
<version>
2.7v
</version>
<version>
2.7v
</version>
</dependency>
</dependency>
<dependency>
<groupId>
cn.afterturn
</groupId>
<artifactId>
easypoi-base
</artifactId>
<version>
4.0.0
</version>
<scope>
compile
</scope>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
<plugins>
<plugins>
...
...
amos-boot-system-tzs/amos-boot-module-tzspatrol/amos-boot-module-tzspatrol-biz/src/main/java/com/yeejoin/amos/patrol/business/vo/PlanTaskVo.java
View file @
a57335ff
package
com
.
yeejoin
.
amos
.
patrol
.
business
.
vo
;
package
com
.
yeejoin
.
amos
.
patrol
.
business
.
vo
;
import
cn.afterturn.easypoi.excel.annotation.Excel
;
import
cn.afterturn.easypoi.excel.annotation.Excel
;
import
com.alibaba.excel.annotation.write.style.ColumnWidth
;
import
lombok.Data
;
import
lombok.Data
;
@Data
@Data
public
class
PlanTaskVo
{
public
class
PlanTaskVo
{
private
long
id
;
private
long
id
;
@Excel
(
name
=
"计划批号"
,
orderNum
=
"0"
)
@Excel
(
name
=
"计划批号"
,
orderNum
=
"0"
,
width
=
30
)
private
String
batchNo
;
private
String
batchNo
;
@Excel
(
name
=
"计划名称"
,
orderNum
=
"1"
)
@Excel
(
name
=
"计划名称"
,
orderNum
=
"1"
,
width
=
30
)
private
String
planName
;
private
String
planName
;
private
long
planId
;
private
long
planId
;
@Excel
(
name
=
"巡检路线"
,
orderNum
=
"2"
)
@Excel
(
name
=
"巡检路线"
,
orderNum
=
"2"
,
width
=
20
)
private
String
routeName
;
private
String
routeName
;
@Excel
(
name
=
"点编号"
,
orderNum
=
"3"
)
@Excel
(
name
=
"点编号"
,
orderNum
=
"3"
)
private
String
pointNo
;
private
String
pointNo
;
@Excel
(
name
=
"点名称"
,
orderNum
=
"4"
)
@Excel
(
name
=
"点名称"
,
orderNum
=
"4"
,
width
=
30
)
private
String
pointName
;
private
String
pointName
;
@Excel
(
name
=
"开始时间"
,
orderNum
=
"5"
)
@Excel
(
name
=
"开始时间"
,
orderNum
=
"5"
,
width
=
20
)
private
String
beginTime
;
private
String
beginTime
;
@Excel
(
name
=
"结束时间"
,
orderNum
=
"6"
)
@Excel
(
name
=
"结束时间"
,
orderNum
=
"6"
,
width
=
20
)
private
String
endTime
;
private
String
endTime
;
@Excel
(
name
=
"执行情况"
,
replace
=
{
"尚未巡检_0"
,
"按时完成_1"
,
"超时漏检_2"
},
orderNum
=
"7"
)
@Excel
(
name
=
"执行情况"
,
replace
=
{
"尚未巡检_0"
,
"按时完成_1"
,
"超时漏检_2"
},
orderNum
=
"7"
)
private
String
status
;
private
String
status
;
@Excel
(
name
=
"巡检人员"
,
orderNum
=
"8"
)
@Excel
(
name
=
"巡检人员"
,
orderNum
=
"8"
,
width
=
20
)
private
String
userName
;
private
String
userName
;
private
long
deptId
;
private
long
deptId
;
@Excel
(
name
=
"巡检部门"
,
orderNum
=
"9"
)
@Excel
(
name
=
"巡检部门"
,
orderNum
=
"9"
,
width
=
30
)
private
String
deptName
;
private
String
deptName
;
@Excel
(
name
=
"备注说明"
,
orderNum
=
"10"
)
@Excel
(
name
=
"备注说明"
,
orderNum
=
"10"
)
private
String
remark
;
private
String
remark
;
...
...
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