Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
api
Overview
Overview
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
首航-临时账号
api
Commits
677aac65
Commit
677aac65
authored
Dec 22, 2020
by
luoh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
油量接口,计划起飞时间修改
parent
ed47477f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletions
+14
-1
OilAnalysisDao.xml
resources/mapper/modules/airport/OilAnalysisDao.xml
+1
-0
OilAnalysisEntity.java
src/com/ejweb/modules/airport/entity/OilAnalysisEntity.java
+13
-1
No files found.
resources/mapper/modules/airport/OilAnalysisDao.xml
View file @
677aac65
...
...
@@ -3,6 +3,7 @@
<mapper
namespace=
"com.ejweb.modules.airport.dao.OilAnalysisDao"
>
<select
id=
"getOilAnalysisData"
resultType=
"com.ejweb.modules.airport.entity.OilAnalysisEntity"
>
select DATE_FORMAT(sta.std, '%Y/%m/%d %H:%i')as std,
DATE_FORMAT(sta.std, '%Y/%m/%d %H:%i:%s')as stdExcel,
sta.flight_no,
sta.ac_no,
sta.dispatcher_name,
...
...
src/com/ejweb/modules/airport/entity/OilAnalysisEntity.java
View file @
677aac65
...
...
@@ -16,8 +16,10 @@ public class OilAnalysisEntity {
@ExcelField
(
title
=
"序号"
,
type
=
0
,
align
=
1
,
sort
=
27
)
private
int
no
;
@ExcelField
(
title
=
"计划起飞时间"
,
type
=
0
,
align
=
1
,
sort
=
28
)
private
String
std
;
// 计划起飞时间
private
String
stdExcel
;
// 计划起飞时间(导出用)
@ExcelField
(
title
=
"航班号"
,
type
=
0
,
align
=
1
,
sort
=
29
)
private
String
flightNo
;
// 航班号
@ExcelField
(
title
=
"飞机号"
,
type
=
0
,
align
=
1
,
sort
=
30
)
...
...
@@ -76,6 +78,7 @@ public class OilAnalysisEntity {
private
String
updateDate
;
// 数据更新时间
private
String
extraOilFuelReason
;
// 额外油加注原因
private
String
totalOil
;
// 总油量
private
String
std
;
// 计划起飞时间
public
String
getUpdateTime
()
{
...
...
@@ -126,6 +129,15 @@ public class OilAnalysisEntity {
this
.
extraOilFuelOtherReason
=
extraOilFuelOtherReason
;
}
public
String
getStdExcel
()
{
return
stdExcel
;
}
public
void
setStdExcel
(
String
stdExcel
)
{
this
.
stdExcel
=
stdExcel
;
}
public
int
getNo
()
{
return
no
;
}
...
...
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