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
351f79f7
Commit
351f79f7
authored
Mar 31, 2022
by
helinlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改气瓶系统bug
parent
6adf3303
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
24 deletions
+22
-24
CylinderInfoController.java
...module/tzs/flc/biz/controller/CylinderInfoController.java
+22
-24
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-tzs-biz/src/main/java/com/yeejoin/amos/boot/module/tzs/flc/biz/controller/CylinderInfoController.java
View file @
351f79f7
...
@@ -199,8 +199,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -199,8 +199,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/getCylinderInfo"
)
@GetMapping
(
value
=
"/getCylinderInfo"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"获取气瓶增加减少总量及环比"
,
notes
=
"获取气瓶增加减少总量及环比"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"获取气瓶增加减少总量及环比"
,
notes
=
"获取气瓶增加减少总量及环比"
)
public
ResponseModel
<
Boolean
>
getCylinderInfo1
()
{
public
ResponseModel
<
Boolean
>
getCylinderInfo1
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
getCylinderInfo
();
cylinderInfoServiceImpl
.
getCylinderInfo
();
return
ResponseHelper
.
buildResponse
(
flag
);
return
ResponseHelper
.
buildResponse
(
true
);
}
}
/**
/**
...
@@ -212,8 +212,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -212,8 +212,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/getCylinderUnitInfo"
)
@GetMapping
(
value
=
"/getCylinderUnitInfo"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"获取企业增加减少总量及环比"
,
notes
=
"获取企业增加减少总量及环比"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"获取企业增加减少总量及环比"
,
notes
=
"获取企业增加减少总量及环比"
)
public
ResponseModel
<
Boolean
>
getCylinderUnitInfo
()
{
public
ResponseModel
<
Boolean
>
getCylinderUnitInfo
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
getCylinderUnitInfo
();
cylinderInfoServiceImpl
.
getCylinderUnitInfo
();
return
ResponseHelper
.
buildResponse
(
flag
);
return
ResponseHelper
.
buildResponse
(
true
);
}
}
...
@@ -362,8 +362,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -362,8 +362,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/addIntegrityData"
)
@GetMapping
(
value
=
"/addIntegrityData"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"数据完整性同步"
,
notes
=
"数据完整性同步"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"数据完整性同步"
,
notes
=
"数据完整性同步"
)
public
ResponseModel
<
Boolean
>
addIntegrityData
()
{
public
ResponseModel
<
Boolean
>
addIntegrityData
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
addIntegrityData
();
cylinderInfoServiceImpl
.
addIntegrityData
();
return
ResponseHelper
.
buildResponse
(
flag
);
return
ResponseHelper
.
buildResponse
(
true
);
}
}
/**
/**
...
@@ -375,9 +375,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -375,9 +375,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/synAreaData"
)
@GetMapping
(
value
=
"/synAreaData"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"同步区域数据"
,
notes
=
"同步区域数据"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"同步区域数据"
,
notes
=
"同步区域数据"
)
public
ResponseModel
<
Boolean
>
synAreaData
()
{
public
ResponseModel
<
Boolean
>
synAreaData
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
synAreaData
();
cylinderInfoServiceImpl
.
synAreaData
();
return
ResponseHelper
.
buildResponse
(
true
);
return
ResponseHelper
.
buildResponse
(
flag
);
}
}
...
@@ -390,9 +389,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -390,9 +389,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/synFillingUnloadData"
)
@GetMapping
(
value
=
"/synFillingUnloadData"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"装卸液体数据同步"
,
notes
=
"装卸液体数据同步"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"装卸液体数据同步"
,
notes
=
"装卸液体数据同步"
)
public
ResponseModel
<
Boolean
>
synFillingUnloadData
()
{
public
ResponseModel
<
Boolean
>
synFillingUnloadData
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
synFillingUnloadData
();
cylinderInfoServiceImpl
.
synFillingUnloadData
();
return
ResponseHelper
.
buildResponse
(
true
);
return
ResponseHelper
.
buildResponse
(
flag
);
}
}
/**
/**
...
@@ -774,8 +772,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -774,8 +772,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/synUnitCylinderInfoData"
)
@GetMapping
(
value
=
"/synUnitCylinderInfoData"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"企业气瓶总量数据同步"
,
notes
=
"企业气瓶总量数据同步"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"企业气瓶总量数据同步"
,
notes
=
"企业气瓶总量数据同步"
)
public
ResponseModel
<
Boolean
>
synUnitCylinderInfoData
()
{
public
ResponseModel
<
Boolean
>
synUnitCylinderInfoData
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
synUnitCylinderInfoData
();
cylinderInfoServiceImpl
.
synUnitCylinderInfoData
();
return
ResponseHelper
.
buildResponse
(
flag
);
return
ResponseHelper
.
buildResponse
(
true
);
}
}
/**
/**
...
@@ -787,8 +785,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -787,8 +785,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/synUnitCylinderFillingData"
)
@GetMapping
(
value
=
"/synUnitCylinderFillingData"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"企业气瓶充装数据同步"
,
notes
=
"企业气瓶充装数据同步"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"企业气瓶充装数据同步"
,
notes
=
"企业气瓶充装数据同步"
)
public
ResponseModel
<
Boolean
>
synUnitCylinderFillingData
()
{
public
ResponseModel
<
Boolean
>
synUnitCylinderFillingData
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
synUnitCylinderFillingData
();
cylinderInfoServiceImpl
.
synUnitCylinderFillingData
();
return
ResponseHelper
.
buildResponse
(
flag
);
return
ResponseHelper
.
buildResponse
(
true
);
}
}
/**
/**
...
@@ -800,8 +798,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -800,8 +798,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/synUnitCylinderTagsData"
)
@GetMapping
(
value
=
"/synUnitCylinderTagsData"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"企业气瓶标签数量比同步"
,
notes
=
"企业气瓶标签数量比同步"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"企业气瓶标签数量比同步"
,
notes
=
"企业气瓶标签数量比同步"
)
public
ResponseModel
<
Boolean
>
synUnitCylinderTagsData
()
{
public
ResponseModel
<
Boolean
>
synUnitCylinderTagsData
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
synUnitCylinderTagsData
();
cylinderInfoServiceImpl
.
synUnitCylinderTagsData
();
return
ResponseHelper
.
buildResponse
(
flag
);
return
ResponseHelper
.
buildResponse
(
true
);
}
}
/**
/**
...
@@ -813,8 +811,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -813,8 +811,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/synUnitIntegrityData"
)
@GetMapping
(
value
=
"/synUnitIntegrityData"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"企业数据完整度同步"
,
notes
=
"企业数据完整度同步"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"企业数据完整度同步"
,
notes
=
"企业数据完整度同步"
)
public
ResponseModel
<
Boolean
>
synUnitIntegrityData
()
{
public
ResponseModel
<
Boolean
>
synUnitIntegrityData
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
synUnitIntegrityData
();
cylinderInfoServiceImpl
.
synUnitIntegrityData
();
return
ResponseHelper
.
buildResponse
(
flag
);
return
ResponseHelper
.
buildResponse
(
true
);
}
}
/**
/**
...
@@ -826,8 +824,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -826,8 +824,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/synUnitFillingCheckData"
)
@GetMapping
(
value
=
"/synUnitFillingCheckData"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"气瓶充装检查情况同步"
,
notes
=
"气瓶充装检查情况同步"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"气瓶充装检查情况同步"
,
notes
=
"气瓶充装检查情况同步"
)
public
ResponseModel
<
Boolean
>
synUnitFillingCheckData
()
{
public
ResponseModel
<
Boolean
>
synUnitFillingCheckData
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
synUnitFillingCheckData
();
cylinderInfoServiceImpl
.
synUnitFillingCheckData
();
return
ResponseHelper
.
buildResponse
(
flag
);
return
ResponseHelper
.
buildResponse
(
true
);
}
}
/**
/**
...
@@ -839,8 +837,8 @@ public class CylinderInfoController extends BaseController {
...
@@ -839,8 +837,8 @@ public class CylinderInfoController extends BaseController {
@GetMapping
(
value
=
"/synFillingUnloadUnitData"
)
@GetMapping
(
value
=
"/synFillingUnloadUnitData"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"装卸液体企业数据同步"
,
notes
=
"装卸液体企业数据同步"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"装卸液体企业数据同步"
,
notes
=
"装卸液体企业数据同步"
)
public
ResponseModel
<
Boolean
>
synFillingUnloadUnitData
()
{
public
ResponseModel
<
Boolean
>
synFillingUnloadUnitData
()
{
Boolean
flag
=
cylinderInfoServiceImpl
.
synFillingUnloadUnitData
();
cylinderInfoServiceImpl
.
synFillingUnloadUnitData
();
return
ResponseHelper
.
buildResponse
(
flag
);
return
ResponseHelper
.
buildResponse
(
true
);
}
}
...
...
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