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
dd322395
Commit
dd322395
authored
Aug 21, 2024
by
刘林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(Statistics):监管接口迁移
parent
bbd589a1
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
100 additions
and
54 deletions
+100
-54
JGDPStatisticsController.java
...le/statistcs/biz/controller/JGDPStatisticsController.java
+28
-9
JGDPStatisticsServiceImpl.java
...statistcs/biz/service/impl/JGDPStatisticsServiceImpl.java
+27
-0
company.json
...odule-statistics-biz/src/main/resources/json/company.json
+1
-1
equip_1000.json
...le-statistics-biz/src/main/resources/json/equip_1000.json
+5
-5
equip_2000.json
...le-statistics-biz/src/main/resources/json/equip_2000.json
+5
-5
equip_3000.json
...le-statistics-biz/src/main/resources/json/equip_3000.json
+5
-5
equip_4000.json
...le-statistics-biz/src/main/resources/json/equip_4000.json
+5
-5
equip_5000.json
...le-statistics-biz/src/main/resources/json/equip_5000.json
+5
-5
equip_6000.json
...le-statistics-biz/src/main/resources/json/equip_6000.json
+5
-5
equip_8000.json
...le-statistics-biz/src/main/resources/json/equip_8000.json
+5
-5
equip_9000.json
...le-statistics-biz/src/main/resources/json/equip_9000.json
+5
-5
problem.json
...odule-statistics-biz/src/main/resources/json/problem.json
+3
-3
registration.json
...-statistics-biz/src/main/resources/json/registration.json
+1
-1
No files found.
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/controller/JGDPStatisticsController.java
View file @
dd322395
...
@@ -359,7 +359,7 @@ public class JGDPStatisticsController {
...
@@ -359,7 +359,7 @@ public class JGDPStatisticsController {
* @return
* @return
*/
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/page"
)
@GetMapping
(
value
=
"/
equipment-register/
page"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"设备注册信息分页查询"
,
notes
=
"设备注册信息分页查询"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"设备注册信息分页查询"
,
notes
=
"设备注册信息分页查询"
)
public
ResponseModel
<
Page
<
JSONObject
>>
queryForPage
(
@RequestParam
Map
<
String
,
Object
>
map
)
{
public
ResponseModel
<
Page
<
JSONObject
>>
queryForPage
(
@RequestParam
Map
<
String
,
Object
>
map
)
{
JSONObject
jsonObject
=
new
JSONObject
(
map
);
JSONObject
jsonObject
=
new
JSONObject
(
map
);
...
@@ -373,14 +373,14 @@ public class JGDPStatisticsController {
...
@@ -373,14 +373,14 @@ public class JGDPStatisticsController {
* @return 返回由页签的key包裹详情对象
* @return 返回由页签的key包裹详情对象
*/
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/{record}"
)
@GetMapping
(
value
=
"/
equipment-register/
{record}"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据record查询设备注册信息详情"
,
notes
=
"根据record查询设备注册信息详情"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据record查询设备注册信息详情"
,
notes
=
"根据record查询设备注册信息详情"
)
public
ResponseModel
<
Object
>
selectOne
(
@PathVariable
String
record
,
@RequestParam
(
required
=
false
)
String
isCopy
)
{
public
ResponseModel
<
Object
>
selectOne
(
@PathVariable
String
record
,
@RequestParam
(
required
=
false
)
String
isCopy
)
{
return
ResponseHelper
.
buildResponse
(
statisticsService
.
getEquipmentRegisterByRecord
(
record
,
isCopy
));
return
ResponseHelper
.
buildResponse
(
statisticsService
.
getEquipmentRegisterByRecord
(
record
,
isCopy
));
}
}
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/equOnJgServiceOperationRecords"
)
@GetMapping
(
value
=
"
common
/equOnJgServiceOperationRecords"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"查询设备在jg业务中的记录"
,
notes
=
"查询设备在jg业务中的记录"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"查询设备在jg业务中的记录"
,
notes
=
"查询设备在jg业务中的记录"
)
public
ResponseModel
<
List
<
Map
<
String
,
String
>>>
equOnJgServiceOperationRecords
(
@RequestParam
(
value
=
"record"
)
String
record
)
{
public
ResponseModel
<
List
<
Map
<
String
,
String
>>>
equOnJgServiceOperationRecords
(
@RequestParam
(
value
=
"record"
)
String
record
)
{
return
ResponseHelper
.
buildResponse
(
statisticsService
.
equOnJgServiceOperationRecords
(
record
));
return
ResponseHelper
.
buildResponse
(
statisticsService
.
equOnJgServiceOperationRecords
(
record
));
...
@@ -394,7 +394,7 @@ public class JGDPStatisticsController {
...
@@ -394,7 +394,7 @@ public class JGDPStatisticsController {
* @return
* @return
*/
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/equipId/page"
)
@GetMapping
(
value
=
"/
safety-problem-tracing/
equipId/page"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"设备问题列表分页查询"
,
notes
=
"设备问题列表分页查询"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"设备问题列表分页查询"
,
notes
=
"设备问题列表分页查询"
)
public
ResponseModel
<
Page
<
SafetyProblemTracingDto
>>
queryProblemPageByEquipId
(
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
public
ResponseModel
<
Page
<
SafetyProblemTracingDto
>>
queryProblemPageByEquipId
(
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
(
value
=
"size"
)
int
size
,
@RequestParam
(
value
=
"record"
)
String
equipId
)
{
(
value
=
"size"
)
int
size
,
@RequestParam
(
value
=
"record"
)
String
equipId
)
{
...
@@ -412,7 +412,7 @@ public class JGDPStatisticsController {
...
@@ -412,7 +412,7 @@ public class JGDPStatisticsController {
* @return
* @return
*/
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/{sequenceNbr}"
)
@GetMapping
(
value
=
"/
safety-problem-tracing/
{sequenceNbr}"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据sequenceNbr查询单个安全追溯问题"
,
notes
=
"根据sequenceNbr查询单个安全追溯问题"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据sequenceNbr查询单个安全追溯问题"
,
notes
=
"根据sequenceNbr查询单个安全追溯问题"
)
public
ResponseModel
<
SafetyProblemTracingDto
>
selectSafetyProblem
(
@PathVariable
Long
sequenceNbr
)
{
public
ResponseModel
<
SafetyProblemTracingDto
>
selectSafetyProblem
(
@PathVariable
Long
sequenceNbr
)
{
return
ResponseHelper
.
buildResponse
(
statisticsService
.
selectSafetyProblem
(
sequenceNbr
));
return
ResponseHelper
.
buildResponse
(
statisticsService
.
selectSafetyProblem
(
sequenceNbr
));
...
@@ -426,7 +426,7 @@ public class JGDPStatisticsController {
...
@@ -426,7 +426,7 @@ public class JGDPStatisticsController {
*/
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据问题ID及问题类型查询关联设备列表"
,
notes
=
"根据问题ID及问题类型查询关联设备列表"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据问题ID及问题类型查询关联设备列表"
,
notes
=
"根据问题ID及问题类型查询关联设备列表"
)
@GetMapping
(
value
=
"/equip/list"
)
@GetMapping
(
value
=
"/
safety-problem-tracing/
equip/list"
)
public
ResponseModel
<
Page
<
Map
<
String
,
Object
>>>
queryEquipListProblemById
(
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
public
ResponseModel
<
Page
<
Map
<
String
,
Object
>>>
queryEquipListProblemById
(
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
(
value
=
"size"
)
int
size
,
@RequestParam
(
value
=
"sequenceNbr"
)
String
problemId
)
{
(
value
=
"size"
)
int
size
,
@RequestParam
(
value
=
"sequenceNbr"
)
String
problemId
)
{
Page
<
Map
<
String
,
Object
>>
page
=
new
Page
<>();
Page
<
Map
<
String
,
Object
>>
page
=
new
Page
<>();
...
@@ -443,7 +443,7 @@ public class JGDPStatisticsController {
...
@@ -443,7 +443,7 @@ public class JGDPStatisticsController {
*/
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据问题ID及问题类型查询关联企业"
,
notes
=
"根据问题ID及问题类型查询关联企业"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据问题ID及问题类型查询关联企业"
,
notes
=
"根据问题ID及问题类型查询关联企业"
)
@GetMapping
(
value
=
"/unit/list"
)
@GetMapping
(
value
=
"/
safety-problem-tracing/
unit/list"
)
public
ResponseModel
<
Page
<
Map
<
String
,
Object
>>>
queryPrincipalUnitByProblemId
(
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
public
ResponseModel
<
Page
<
Map
<
String
,
Object
>>>
queryPrincipalUnitByProblemId
(
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
(
value
=
"size"
)
int
size
,
@RequestParam
(
value
=
"sequenceNbr"
)
String
problemId
)
{
(
value
=
"size"
)
int
size
,
@RequestParam
(
value
=
"sequenceNbr"
)
String
problemId
)
{
Page
<
Map
<
String
,
Object
>>
page
=
new
Page
<>();
Page
<
Map
<
String
,
Object
>>
page
=
new
Page
<>();
...
@@ -459,7 +459,7 @@ public class JGDPStatisticsController {
...
@@ -459,7 +459,7 @@ public class JGDPStatisticsController {
* @return
* @return
*/
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/detail/dp"
)
@GetMapping
(
value
=
"/
jg-use-registration-manage/
detail/dp"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据sequenceNbr查询---大屏使用"
,
notes
=
"根据sequenceNbr查询---大屏使用"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据sequenceNbr查询---大屏使用"
,
notes
=
"根据sequenceNbr查询---大屏使用"
)
public
ResponseModel
<
Object
>
getRegistrationDetail
(
@RequestParam
(
value
=
"sequenceNbr"
)
String
sequenceNbr
)
{
public
ResponseModel
<
Object
>
getRegistrationDetail
(
@RequestParam
(
value
=
"sequenceNbr"
)
String
sequenceNbr
)
{
return
ResponseHelper
.
buildResponse
(
statisticsService
.
getRegistrationDetail
(
sequenceNbr
));
return
ResponseHelper
.
buildResponse
(
statisticsService
.
getRegistrationDetail
(
sequenceNbr
));
...
@@ -473,7 +473,7 @@ public class JGDPStatisticsController {
...
@@ -473,7 +473,7 @@ public class JGDPStatisticsController {
* @return
* @return
*/
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/detail/equList"
)
@GetMapping
(
value
=
"/
jg-use-registration-manage/
detail/equList"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据sequenceNbr查询使用登记证对应设备列表---使用登记证详情用"
,
notes
=
"根据sequenceNbr查询使用登记证对应设备列表---使用登记证详情用"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据sequenceNbr查询使用登记证对应设备列表---使用登记证详情用"
,
notes
=
"根据sequenceNbr查询使用登记证对应设备列表---使用登记证详情用"
)
public
ResponseModel
<
Page
<
JSONObject
>>
certificateEquList
(
@RequestParam
(
value
=
"current"
)
int
current
,
public
ResponseModel
<
Page
<
JSONObject
>>
certificateEquList
(
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
(
value
=
"size"
)
int
size
,
@RequestParam
(
value
=
"size"
)
int
size
,
...
@@ -481,4 +481,23 @@ public class JGDPStatisticsController {
...
@@ -481,4 +481,23 @@ public class JGDPStatisticsController {
return
ResponseHelper
.
buildResponse
(
statisticsService
.
certificateEquList
(
current
,
size
,
sequenceNbr
));
return
ResponseHelper
.
buildResponse
(
statisticsService
.
certificateEquList
(
current
,
size
,
sequenceNbr
));
}
}
/**
* 列表分页查询-大屏使用
*
* @param current 当前页
* @param current 每页大小
* @return
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@PostMapping
(
value
=
"/safety-problem-tracing/page/dp"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"分页查询安全追溯问题-大屏使用"
,
notes
=
"分页查询安全追溯问题-大屏使用"
)
public
ResponseModel
<
Page
<
SafetyProblemTracingDto
>>
getProblemRecords
(
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
(
value
=
"size"
)
int
size
,
@RequestBody
(
required
=
false
)
SafetyProblemTracingDto
problemModel
)
{
Page
<
SafetyProblemTracingDto
>
page
=
new
Page
<>();
page
.
setCurrent
(
current
);
page
.
setSize
(
size
);
return
ResponseHelper
.
buildResponse
(
statisticsService
.
getProblemRecords
(
page
,
problemModel
));
}
}
}
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/service/impl/JGDPStatisticsServiceImpl.java
View file @
dd322395
...
@@ -13,6 +13,8 @@ import com.google.common.collect.Lists;
...
@@ -13,6 +13,8 @@ import com.google.common.collect.Lists;
import
com.yeejoin.amos.boot.biz.common.bo.CompanyBo
;
import
com.yeejoin.amos.boot.biz.common.bo.CompanyBo
;
import
com.yeejoin.amos.boot.biz.common.bo.ReginParams
;
import
com.yeejoin.amos.boot.biz.common.bo.ReginParams
;
import
com.yeejoin.amos.boot.biz.common.dto.CountDto
;
import
com.yeejoin.amos.boot.biz.common.dto.CountDto
;
import
com.yeejoin.amos.boot.biz.common.entity.DataDictionary
;
import
com.yeejoin.amos.boot.biz.common.service.impl.DataDictionaryServiceImpl
;
import
com.yeejoin.amos.boot.biz.common.utils.RedisKey
;
import
com.yeejoin.amos.boot.biz.common.utils.RedisKey
;
import
com.yeejoin.amos.boot.biz.common.utils.RedisUtils
;
import
com.yeejoin.amos.boot.biz.common.utils.RedisUtils
;
import
com.yeejoin.amos.boot.module.common.api.dto.DPFilterParamDto
;
import
com.yeejoin.amos.boot.module.common.api.dto.DPFilterParamDto
;
...
@@ -76,6 +78,7 @@ import java.time.LocalDateTime;
...
@@ -76,6 +78,7 @@ import java.time.LocalDateTime;
import
java.time.format.DateTimeFormatter
;
import
java.time.format.DateTimeFormatter
;
import
java.time.temporal.TemporalAdjusters
;
import
java.time.temporal.TemporalAdjusters
;
import
java.util.*
;
import
java.util.*
;
import
java.util.concurrent.ConcurrentHashMap
;
import
java.util.concurrent.ThreadLocalRandom
;
import
java.util.concurrent.ThreadLocalRandom
;
import
java.util.function.Function
;
import
java.util.function.Function
;
import
java.util.stream.Collectors
;
import
java.util.stream.Collectors
;
...
@@ -234,6 +237,8 @@ public class JGDPStatisticsServiceImpl {
...
@@ -234,6 +237,8 @@ public class JGDPStatisticsServiceImpl {
private
IdxBizJgTechParamsLiftingMapper
idxBizJgTechParamsLiftingMapper
;
private
IdxBizJgTechParamsLiftingMapper
idxBizJgTechParamsLiftingMapper
;
private
final
DataDictionaryServiceImpl
iDataDictionaryService
;
public
JGDPStatisticsServiceImpl
(
JgUseRegistrationMapper
useRegistrationMapper
,
JgEnableDisableMapper
enableDisableMapper
,
public
JGDPStatisticsServiceImpl
(
JgUseRegistrationMapper
useRegistrationMapper
,
JgEnableDisableMapper
enableDisableMapper
,
JgScrapCancelMapper
scrapCancelMapper
,
RestHighLevelClient
restHighLevelClient
,
JgScrapCancelMapper
scrapCancelMapper
,
RestHighLevelClient
restHighLevelClient
,
TzBaseEnterpriseInfoMapper
enterpriseInfoMapper
,
CommonMapper
commonMapper
,
TzBaseEnterpriseInfoMapper
enterpriseInfoMapper
,
CommonMapper
commonMapper
,
...
@@ -262,6 +267,7 @@ public class JGDPStatisticsServiceImpl {
...
@@ -262,6 +267,7 @@ public class JGDPStatisticsServiceImpl {
IdxBizJgTechParamsVesselMapper
idxBizJgTechParamsVesselMapper
,
IdxBizJgTechParamsVesselMapper
idxBizJgTechParamsVesselMapper
,
IdxBizJgTechParamsPipelineMapper
idxBizJgTechParamsPipelineMapper
,
IdxBizJgTechParamsPipelineMapper
idxBizJgTechParamsPipelineMapper
,
IdxBizJgTechParamsElevatorMapper
idxBizJgTechParamsElevatorMapper
,
IdxBizJgTechParamsElevatorMapper
idxBizJgTechParamsElevatorMapper
,
DataDictionaryServiceImpl
iDataDictionaryService
,
SafetyProblemTracingMapper
safetyProblemTracingMapper
)
{
SafetyProblemTracingMapper
safetyProblemTracingMapper
)
{
this
.
useRegistrationMapper
=
useRegistrationMapper
;
this
.
useRegistrationMapper
=
useRegistrationMapper
;
this
.
enableDisableMapper
=
enableDisableMapper
;
this
.
enableDisableMapper
=
enableDisableMapper
;
...
@@ -296,6 +302,8 @@ public class JGDPStatisticsServiceImpl {
...
@@ -296,6 +302,8 @@ public class JGDPStatisticsServiceImpl {
this
.
idxBizJgTechParamsVesselMapper
=
idxBizJgTechParamsVesselMapper
;
this
.
idxBizJgTechParamsVesselMapper
=
idxBizJgTechParamsVesselMapper
;
this
.
idxBizJgTechParamsPipelineMapper
=
idxBizJgTechParamsPipelineMapper
;
this
.
idxBizJgTechParamsPipelineMapper
=
idxBizJgTechParamsPipelineMapper
;
this
.
idxBizJgTechParamsLiftingMapper
=
iIdxBizJgTechParamsLiftingMapper
;
this
.
idxBizJgTechParamsLiftingMapper
=
iIdxBizJgTechParamsLiftingMapper
;
this
.
idxBizJgTechParamsElevatorMapper
=
idxBizJgTechParamsElevatorMapper
;
this
.
iDataDictionaryService
=
iDataDictionaryService
;
}
}
private
List
<
LegendDataDto
>
buildLegendDataList
()
{
private
List
<
LegendDataDto
>
buildLegendDataList
()
{
...
@@ -3185,4 +3193,23 @@ public class JGDPStatisticsServiceImpl {
...
@@ -3185,4 +3193,23 @@ public class JGDPStatisticsServiceImpl {
result
.
setTotal
(
totle
);
result
.
setTotal
(
totle
);
return
result
;
return
result
;
}
}
public
Page
<
SafetyProblemTracingDto
>
getProblemRecords
(
Page
<
SafetyProblemTracingDto
>
page
,
SafetyProblemTracingDto
problemModel
)
{
String
orgCode
=
stCommonService
.
getAndSetOrgCode
(
problemModel
.
getCityCode
());
if
(
com
.
baomidou
.
mybatisplus
.
core
.
toolkit
.
ObjectUtils
.
isEmpty
(
orgCode
)){
return
new
Page
<>();
}
problemModel
.
setGoverningBodyOrgCode
(
orgCode
);
// 使用orgCode过滤
// 将单位类型从code转化为value
if
(!
ValidationUtil
.
isEmpty
(
problemModel
.
getPrincipalUnitType
())){
Collection
<
DataDictionary
>
unitTypeList
=
iDataDictionaryService
.
list
(
new
QueryWrapper
<
DataDictionary
>()
.
eq
(
"type"
,
"UNIT_TYPE_NEW"
)
.
eq
(
"is_delete"
,
false
)
.
orderByAsc
(
"sort_num"
));
Map
<
String
,
String
>
unitTypeMap
=
unitTypeList
.
stream
().
collect
(
Collectors
.
toMap
(
DataDictionary:
:
getCode
,
DataDictionary:
:
getName
));
problemModel
.
setPrincipalUnitType
(
unitTypeMap
.
getOrDefault
(
problemModel
.
getPrincipalUnitType
(),
null
));
}
return
safetyProblemTracingMapper
.
queryForSafetyProblemTracingPage
(
page
,
problemModel
);
}
}
}
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/company.json
View file @
dd322395
...
@@ -49,7 +49,7 @@
...
@@ -49,7 +49,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/page"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/page"
,
"params"
:
{
"params"
:
{
"number"
:
1
,
"number"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_1000.json
View file @
dd322395
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -91,7 +91,7 @@
...
@@ -91,7 +91,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"apiPath"
:
"/
statistics/dp/
jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -110,7 +110,7 @@
...
@@ -110,7 +110,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"params"
:
{
"current"
:
1
,
"current"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_2000.json
View file @
dd322395
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -95,7 +95,7 @@
...
@@ -95,7 +95,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"apiPath"
:
"/
statistics/dp/
jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -114,7 +114,7 @@
...
@@ -114,7 +114,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"params"
:
{
"current"
:
1
,
"current"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_3000.json
View file @
dd322395
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -91,7 +91,7 @@
...
@@ -91,7 +91,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"apiPath"
:
"/
statistics/dp/
jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -110,7 +110,7 @@
...
@@ -110,7 +110,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"params"
:
{
"current"
:
1
,
"current"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_4000.json
View file @
dd322395
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -87,7 +87,7 @@
...
@@ -87,7 +87,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"apiPath"
:
"/
statistics/dp/
jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -106,7 +106,7 @@
...
@@ -106,7 +106,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"params"
:
{
"current"
:
1
,
"current"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_5000.json
View file @
dd322395
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -83,7 +83,7 @@
...
@@ -83,7 +83,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"apiPath"
:
"/
statistics/dp/
jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -102,7 +102,7 @@
...
@@ -102,7 +102,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"params"
:
{
"current"
:
1
,
"current"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_6000.json
View file @
dd322395
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -77,7 +77,7 @@
...
@@ -77,7 +77,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"apiPath"
:
"/
statistics/dp/
jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -96,7 +96,7 @@
...
@@ -96,7 +96,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"params"
:
{
"current"
:
1
,
"current"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_8000.json
View file @
dd322395
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -83,7 +83,7 @@
...
@@ -83,7 +83,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"apiPath"
:
"/
statistics/dp/
jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -102,7 +102,7 @@
...
@@ -102,7 +102,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"params"
:
{
"current"
:
1
,
"current"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_9000.json
View file @
dd322395
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"apiPath"
:
"/
statistics/dp/
jg/equipment-register/{record}"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -83,7 +83,7 @@
...
@@ -83,7 +83,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"apiPath"
:
"/
statistics/dp/
jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"params"
:
{
"record"
:
"{record}"
"record"
:
"{record}"
},
},
...
@@ -102,7 +102,7 @@
...
@@ -102,7 +102,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"params"
:
{
"current"
:
1
,
"current"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/problem.json
View file @
dd322395
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/{sequenceNbr}"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/{sequenceNbr}"
,
"params"
:
{
"params"
:
{
"sequenceNbr"
:
"{sequenceNbr}"
"sequenceNbr"
:
"{sequenceNbr}"
}
}
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equip/list"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/equip/list"
,
"params"
:
{
"params"
:
{
"current"
:
1
,
"current"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/unit/list"
,
"apiPath"
:
"/
statistics/dp/
jg/safety-problem-tracing/unit/list"
,
"params"
:
{
"params"
:
{
"current"
:
1
,
"current"
:
1
,
"size"
:
10
,
"size"
:
10
,
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/registration.json
View file @
dd322395
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"dataConfig"
:
{
"dataConfig"
:
{
"api"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/jg-use-registration-manage/detail/dp"
,
"apiPath"
:
"/
statistics/dp/
jg/jg-use-registration-manage/detail/dp"
,
"params"
:
{
"params"
:
{
"sequenceNbr"
:
"{sequenceNbr}"
"sequenceNbr"
:
"{sequenceNbr}"
}
}
...
...
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