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
0c545ce1
Commit
0c545ce1
authored
Aug 01, 2024
by
王果
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop_tzs_register_to_0715' into…
Merge remote-tracking branch 'origin/develop_tzs_register_to_0715' into develop_tzs_register_to_0715
parents
cbbdb252
bd626199
Hide whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
249 additions
and
1222 deletions
+249
-1222
JgUseRegistrationManageMapper.java
...t/module/jg/api/mapper/JgUseRegistrationManageMapper.java
+5
-0
JgUseRegistrationManageMapper.xml
...c/main/resources/mapper/JgUseRegistrationManageMapper.xml
+39
-0
JgUseRegistrationManageController.java
.../jg/biz/controller/JgUseRegistrationManageController.java
+19
-1
SafetyProblemTracingController.java
...ule/jg/biz/controller/SafetyProblemTracingController.java
+18
-0
JgUseRegistrationManageServiceImpl.java
.../biz/service/impl/JgUseRegistrationManageServiceImpl.java
+23
-4
JgUseRegistrationServiceImpl.java
...ule/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
+2
-0
JgVehicleInformationServiceImpl.java
.../jg/biz/service/impl/JgVehicleInformationServiceImpl.java
+6
-5
SafetyProblemTracingServiceImpl.java
.../jg/biz/service/impl/SafetyProblemTracingServiceImpl.java
+29
-0
company.json
...boot-module-jyjc-biz/src/main/resources/json/company.json
+0
-70
equip_1000.json
...t-module-jyjc-biz/src/main/resources/json/equip_1000.json
+0
-134
equip_2000.json
...t-module-jyjc-biz/src/main/resources/json/equip_2000.json
+0
-138
equip_3000.json
...t-module-jyjc-biz/src/main/resources/json/equip_3000.json
+0
-134
equip_4000.json
...t-module-jyjc-biz/src/main/resources/json/equip_4000.json
+0
-130
equip_5000.json
...t-module-jyjc-biz/src/main/resources/json/equip_5000.json
+0
-126
equip_6000.json
...t-module-jyjc-biz/src/main/resources/json/equip_6000.json
+0
-120
equip_8000.json
...t-module-jyjc-biz/src/main/resources/json/equip_8000.json
+0
-126
equip_9000.json
...t-module-jyjc-biz/src/main/resources/json/equip_9000.json
+0
-126
equip_1000.json
...le-statistics-biz/src/main/resources/json/equip_1000.json
+9
-9
equip_2000.json
...le-statistics-biz/src/main/resources/json/equip_2000.json
+9
-9
equip_3000.json
...le-statistics-biz/src/main/resources/json/equip_3000.json
+9
-9
equip_4000.json
...le-statistics-biz/src/main/resources/json/equip_4000.json
+9
-9
equip_5000.json
...le-statistics-biz/src/main/resources/json/equip_5000.json
+9
-9
equip_6000.json
...le-statistics-biz/src/main/resources/json/equip_6000.json
+9
-9
equip_8000.json
...le-statistics-biz/src/main/resources/json/equip_8000.json
+9
-9
equip_9000.json
...le-statistics-biz/src/main/resources/json/equip_9000.json
+9
-9
problem.json
...odule-statistics-biz/src/main/resources/json/problem.json
+14
-14
problem_cylinder.json
...tistics-biz/src/main/resources/json/problem_cylinder.json
+14
-14
registration.json
...-statistics-biz/src/main/resources/json/registration.json
+8
-8
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/mapper/JgUseRegistrationManageMapper.java
View file @
0c545ce1
...
...
@@ -25,4 +25,9 @@ public interface JgUseRegistrationManageMapper extends BaseMapper<JgUseRegistrat
@Param
(
"sort"
)
SortVo
sortMap
);
Long
countCertificateByReginCode
(
String
orgCode
);
Page
<
JgUseRegistrationManageDto
>
getRecords
(
@Param
(
"page"
)
Page
<
JgUseRegistrationManageDto
>
page
,
@Param
(
"dto"
)
JgUseRegistrationManageDto
dto
,
@Param
(
"orgCode"
)
String
orgCode
);
}
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/resources/mapper/JgUseRegistrationManageMapper.xml
View file @
0c545ce1
...
...
@@ -149,4 +149,43 @@
pc.org_code like concat (#{reginCode},'%')
and tjurm.certificate_status = '已登记'
</select>
<select
id=
"getRecords"
resultType=
"com.yeejoin.amos.boot.module.jg.api.dto.JgUseRegistrationManageDto"
>
<include
refid=
"page_list"
/>
from tzs_jg_use_registration_manage tjurm
INNER JOIN privilege_company pc on tjurm.receive_company_code = pc.company_code
<where>
tjurm.is_delete = 0 and pc.org_code like concat (#{orgCode}, '%')
<if
test=
"dto.equList != null and dto.equList != ''"
>
and tjurm.equ_list = #{dto.equList}
</if>
<if
test=
"dto.equListCode != null and dto.equListCode != ''"
>
and tjurm.equ_list_code = #{dto.equListCode}
</if>
<if
test=
"dto.equCategory != null and dto.equCategory != ''"
>
and tjurm.equ_category = #{dto.equCategory}
</if>
<if
test=
"dto.equCategoryCode != null and dto.equCategoryCode != ''"
>
and tjurm.equ_category_code = #{dto.equCategoryCode}
</if>
<if
test=
"dto.useRegistrationCode != null and dto.useRegistrationCode != ''"
>
and tjurm.use_registration_code like concat('%',#{dto.useRegistrationCode},'%')
</if>
<if
test=
"dto.applyNo != null and dto.applyNo != ''"
>
and tjurm.apply_no like concat('%',#{dto.applyNo},'%')
</if>
<if
test=
"dto.certificateNo != null and dto.certificateNo != ''"
>
and tjurm.certificate_no = #{dto.certificateNo}
</if>
<if
test=
"dto.auditPassDate != null and dto.auditPassDate != ''"
>
and tjurm.audit_pass_date like concat('%',DATE_FORMAT(#{dto.auditPassDate},'%Y-%m-%d'),'%')
</if>
<if
test=
"dto.certificateStatus != null and dto.certificateStatus != ''"
>
and tjurm.certificate_status = #{dto.certificateStatus}
</if>
<if
test=
"dto.useUnitCreditCodeForSearch != null and dto.useUnitCreditCodeForSearch != ''"
>
and tjurm.use_unit_credit_code = #{dto.useUnitCreditCodeForSearch}
</if>
ORDER BY tjurm.rec_date DESC
</where>
</select>
</mapper>
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/controller/JgUseRegistrationManageController.java
View file @
0c545ce1
...
...
@@ -161,7 +161,25 @@ public class JgUseRegistrationManageController extends BaseController {
}
return
ResponseHelper
.
buildResponse
(
jgUseRegistrationManageServiceImpl
.
queryForJgUseRegistrationManagePage
(
page
,
dto
,
sort
));
}
/**
* 列表分页查询-大屏监督管理使用
*
* @param current 当前页
* @param current 每页大小
* @return
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/page/dp"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"分页查询"
,
notes
=
"分页查询"
)
public
ResponseModel
<
Page
<
JgUseRegistrationManageDto
>>
getRecords
(
JgUseRegistrationManageDto
dto
,
@RequestParam
(
value
=
"cityCode"
)
String
cityCode
,
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
(
value
=
"size"
)
int
size
)
{
Page
<
JgUseRegistrationManageDto
>
page
=
new
Page
<
JgUseRegistrationManageDto
>();
page
.
setCurrent
(
current
);
page
.
setSize
(
size
);
return
ResponseHelper
.
buildResponse
(
jgUseRegistrationManageServiceImpl
.
getRecords
(
page
,
dto
,
cityCode
));
}
/**
* 按照单位统一代码查询当前单位下的证
*
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/controller/SafetyProblemTracingController.java
View file @
0c545ce1
...
...
@@ -113,6 +113,24 @@ public class SafetyProblemTracingController extends BaseController {
problemModel
.
setGoverningBodyOrgCode
(
loginParams
.
getCompany
().
getOrgCode
());
return
ResponseHelper
.
buildResponse
(
safetyProblemTracingServiceImpl
.
queryForSafetyProblemTracingPage
(
page
,
problemModel
));
}
/**
* 列表分页查询-大屏使用
*
* @param current 当前页
* @param current 每页大小
* @return
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@PostMapping
(
value
=
"/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
(
safetyProblemTracingServiceImpl
.
getProblemRecords
(
page
,
problemModel
));
}
/**
* 设备问题列表分页查询
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgUseRegistrationManageServiceImpl.java
View file @
0c545ce1
...
...
@@ -11,10 +11,7 @@ import com.yeejoin.amos.boot.module.jg.api.entity.*;
import
com.yeejoin.amos.boot.module.jg.api.enums.BusinessTypeEnum
;
import
com.yeejoin.amos.boot.module.jg.api.enums.CertificateStatusEnum
;
import
com.yeejoin.amos.boot.module.jg.api.enums.CylinderTypeEnum
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.JgUseRegistrationEqMapper
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.JgUseRegistrationManageMapper
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.JgUseRegistrationMapper
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.JgVehicleInformationMapper
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.*
;
import
com.yeejoin.amos.boot.module.jg.api.service.IJgChangeRegistrationTransferService
;
import
com.yeejoin.amos.boot.module.jg.api.service.IJgUseRegistrationManageService
;
import
com.yeejoin.amos.boot.module.jg.api.vo.SortVo
;
...
...
@@ -49,6 +46,7 @@ import java.io.IOException;
import
java.nio.charset.StandardCharsets
;
import
java.text.SimpleDateFormat
;
import
java.util.*
;
import
java.util.concurrent.ConcurrentHashMap
;
import
java.util.stream.Collectors
;
import
static
com
.
alibaba
.
fastjson
.
JSON
.
parseArray
;
...
...
@@ -106,6 +104,11 @@ public class JgUseRegistrationManageServiceImpl extends BaseService<JgUseRegistr
@Value
(
"classpath:/json/registrationBasic.json"
)
private
Resource
registrationBasicJson
;
private
static
Map
<
String
,
String
>
regionCodeOrgCodeMap
=
new
ConcurrentHashMap
<>();
@Autowired
CommonMapper
commonMapper
;
/**
* 将已经通过使用登记审批的证信息录入到 jg-use-registration-manage 表中
*/
...
...
@@ -239,6 +242,22 @@ public class JgUseRegistrationManageServiceImpl extends BaseService<JgUseRegistr
}
public
Page
<
JgUseRegistrationManageDto
>
getRecords
(
Page
<
JgUseRegistrationManageDto
>
page
,
JgUseRegistrationManageDto
dto
,
String
cityCode
)
{
String
orgCode
=
getAndSetOrgCode
(
cityCode
);
return
jgUseRegistrationManageMapper
.
getRecords
(
page
,
dto
,
orgCode
);
}
public
String
getAndSetOrgCode
(
String
cityCode
)
{
String
orgCode
=
regionCodeOrgCodeMap
.
get
(
cityCode
);
if
(
orgCode
==
null
)
{
orgCode
=
commonMapper
.
getOrgCodeByCompanyCode
(
cityCode
);
if
(
orgCode
!=
null
)
{
regionCodeOrgCodeMap
.
put
(
cityCode
,
orgCode
);
}
}
return
orgCode
;
}
/**
* 根据sequenceNbr查询---使用登记证详情用
*
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
View file @
0c545ce1
...
...
@@ -687,6 +687,8 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
.
map
(
v
->
(
String
)
v
.
get
(
"record"
))
.
collect
(
Collectors
.
toList
())
);
// 工业管道校验检验检测信息
if
(!
CylinderTypeEnum
.
CYLINDER
.
getCode
().
equals
(
map
.
get
(
"EQU_CATEGORY_CODE"
))
&&
(
inspectionDetectionInfoList
.
isEmpty
()
||
inspectionDetectionInfoList
.
stream
().
anyMatch
(
info
->
ObjectUtils
.
isEmpty
(
info
)
||
ObjectUtils
.
isEmpty
(
info
.
getInspectType
())
||
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgVehicleInformationServiceImpl.java
View file @
0c545ce1
...
...
@@ -201,11 +201,12 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
.
collect
(
Collectors
.
toList
())
);
if
(
inspectionDetectionInfoList
.
stream
().
anyMatch
(
info
->
ObjectUtils
.
isEmpty
(
info
)
||
ObjectUtils
.
isEmpty
(
info
.
getInspectType
())
||
ObjectUtils
.
isEmpty
(
info
.
getInspectConclusion
())
||
ObjectUtils
.
isEmpty
(
info
.
getInspectOrgCode
())))
{
throw
new
BadRequest
(
"请补充设备检验检测信息后提交!"
);
}
// if (inspectionDetectionInfoList.stream().anyMatch(info ->
// ObjectUtils.isEmpty(info) || ObjectUtils.isEmpty(info.getInspectType()) ||
// ObjectUtils.isEmpty(info.getInspectConclusion()) || ObjectUtils.isEmpty(info.getInspectOrgCode()))) {
// throw new BadRequest("请补充设备检验检测信息后提交!");
// }
vehicleInfoDto
.
setNextInspectionDate
(
inspectionDetectionInfoList
.
stream
()
.
map
(
IdxBizJgInspectionDetectionInfo:
:
getNextInspectDate
)
.
filter
(
Objects:
:
nonNull
)
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/SafetyProblemTracingServiceImpl.java
View file @
0c545ce1
...
...
@@ -9,12 +9,14 @@ import com.baomidou.mybatisplus.core.metadata.TableInfo;
import
com.baomidou.mybatisplus.core.metadata.TableInfoHelper
;
import
com.baomidou.mybatisplus.core.toolkit.Assert
;
import
com.baomidou.mybatisplus.core.toolkit.Constants
;
import
com.baomidou.mybatisplus.core.toolkit.ObjectUtils
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.google.common.collect.Lists
;
import
com.google.common.collect.Maps
;
import
com.yeejoin.amos.boot.module.jg.api.entity.SafetyProblemTracing
;
import
com.yeejoin.amos.boot.module.jg.api.enums.SafetyProblemSourceTypeEnum
;
import
com.yeejoin.amos.boot.module.jg.api.enums.SafetyProblemStatusEnum
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.CommonMapper
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.SafetyProblemTracingMapper
;
import
com.yeejoin.amos.boot.module.jg.api.dto.SafetyProblemTracingDto
;
import
com.yeejoin.amos.boot.module.jg.api.service.ISafetyProblemTracingService
;
...
...
@@ -30,6 +32,7 @@ import java.util.HashMap;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Objects
;
import
java.util.concurrent.ConcurrentHashMap
;
import
java.util.function.Function
;
import
static
org
.
springframework
.
jdbc
.
object
.
BatchSqlUpdate
.
DEFAULT_BATCH_SIZE
;
...
...
@@ -46,6 +49,10 @@ public class SafetyProblemTracingServiceImpl extends BaseService<SafetyProblemTr
@Autowired
IIdxBizJgRegisterInfoService
idxBizJgRegisterInfoService
;
private
static
Map
<
String
,
String
>
regionCodeOrgCodeMap
=
new
ConcurrentHashMap
<>();
@Autowired
CommonMapper
commonMapper
;
/**
* 分页查询
*/
...
...
@@ -53,6 +60,28 @@ public class SafetyProblemTracingServiceImpl extends BaseService<SafetyProblemTr
return
this
.
baseMapper
.
queryForSafetyProblemTracingPage
(
page
,
problemModel
);
}
public
Page
<
SafetyProblemTracingDto
>
getProblemRecords
(
Page
<
SafetyProblemTracingDto
>
page
,
SafetyProblemTracingDto
problemModel
)
{
String
orgCode
=
getAndSetOrgCode
(
problemModel
.
getRegionCode
());
if
(
ObjectUtils
.
isEmpty
(
orgCode
)){
return
new
Page
<>();
}
problemModel
.
setGoverningBodyOrgCode
(
orgCode
);
// 使用orgCode过滤
problemModel
.
setRegionCode
(
null
);
return
this
.
baseMapper
.
queryForSafetyProblemTracingPage
(
page
,
problemModel
);
}
public
String
getAndSetOrgCode
(
String
cityCode
)
{
String
orgCode
=
regionCodeOrgCodeMap
.
get
(
cityCode
);
if
(
orgCode
==
null
)
{
orgCode
=
commonMapper
.
getOrgCodeByCompanyCode
(
cityCode
);
if
(
orgCode
!=
null
)
{
regionCodeOrgCodeMap
.
put
(
cityCode
,
orgCode
);
}
}
return
orgCode
;
}
public
Page
<
SafetyProblemTracingDto
>
queryProblemPageByEquipId
(
Page
<
SafetyProblemTracingDto
>
page
,
String
equipId
)
{
SafetyProblemTracingDto
problemModel
=
new
SafetyProblemTracingDto
();
problemModel
.
setSourceId
(
equipId
);
...
...
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/resources/json/company.json
deleted
100644 → 0
View file @
cbbdb252
{
"name"
:
"企业模板"
,
"tabs"
:
[
{
"key"
:
"basic"
,
"displayName"
:
"基本信息"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1793454184889085953"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/tcm/baseEnterprise/getInfoByUseCode/map"
,
"params"
:
{
"useCode"
:
"{useUnitCode}"
}
},
"resultConvert"
:
""
,
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"industrySupervisor"
,
"dictionaryType"
:
"HYZGBM"
},
{
"fieldKey"
:
"registeredOrganCode"
,
"dictionaryType"
:
"DJJG"
}
]
}
},
{
"key"
:
"devtable"
,
"displayName"
:
"设备列表"
,
"renderType"
:
"table"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/page"
,
"params"
:
{
"number"
:
1
,
"size"
:
14
,
"USE_UNIT_CREDIT_CODE"
:
"{useUnitCode}"
}
}
},
"visualParams"
:
{
"rowKey"
:
"record"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"EQU_LIST"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"设备种类"
,
"key"
:
"AA6DE857-C788-494F-8F16-2ECFC7E34528"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"EQU_CATEGORY"
,
"width"
:
160
,
"align"
:
"left"
,
"title"
:
"设备类别"
,
"key"
:
"611DAF3D-5B79-466C-BEF2-CC91580091FA"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"EQU_DEFINE"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"设备品种"
,
"key"
:
"D1CB84A4-E037-446A-9469-65B76E381585"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"PRODUCT_NAME"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"设备名称"
,
"key"
:
"0BB7318F-5134-42B6-A835-FC86D68066C2"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"EQU_CODE"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"设备代码"
,
"key"
:
"6EB924FB-EFEA-4779-ADF8-78F310818D2D"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"FACTORY_NUM"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"出厂编号/产品编码"
,
"key"
:
"87C53BEA-829C-4539-9FCA-E2AF6A53DA15"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"PRODUCE_UNIT_NAME"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"制造单位"
,
"key"
:
"EADCED1C-C761-4209-B6C6-16298B53DD2E"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"USE_UNIT_NAME"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"使用单位"
,
"key"
:
"BA4FB9F0-7F44-473F-A977-5C36A69CD541"
}
]
}
}
],
"content"
:
{
"basic"
:
{
"columns"
:
2
,
"datas"
:
[],
"qrcode"
:
{},
"subs"
:
[]
}
}
}
\ No newline at end of file
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/resources/json/equip_1000.json
deleted
100644 → 0
View file @
cbbdb252
{
"name"
:
"设备-锅炉"
,
"tabs"
:
[
{
"key"
:
"basic"
,
"displayName"
:
"设备信息"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1793458381554479105"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipInfo"
}
},
"paramFieldKeys"
:
[
"EQU_LIST"
,
"EQU_CATEGORY"
,
"EQU_DEFINE"
],
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"IMPORTED"
,
"dictionaryType"
:
"BOOLEN"
},
{
"fieldKey"
:
"USE_PLACE"
,
"dictionaryType"
:
"ADDRESS"
},
{
"fieldKey"
:
"INSPECT_CONCLUSION"
,
"dictionaryType"
:
"JYJL"
}
]
}
},
{
"key"
:
"gl"
,
"displayName"
:
"技术参数"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1734819004637278210"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipParams"
}
},
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"DEVICE_LEVEL"
,
"dictionaryType"
:
"GLJB"
},
{
"fieldKey"
:
"FUEL_TYPE"
,
"dictionaryType"
:
"GLZL"
},
{
"fieldKey"
:
"NAME_OF_PRESSURE_PARTS"
,
"dictionaryType"
:
"GLBJMC"
}
]
}
},
{
"key"
:
"reghistory"
,
"displayName"
:
"监管履历信息"
,
"renderType"
:
"timeline"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result"
,
"operater"
:
"content"
}
}
}
},
{
"key"
:
"devtable"
,
"displayName"
:
"问题列表"
,
"renderType"
:
"table"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"current"
:
1
,
"size"
:
14
,
"record"
:
"{record}"
}
}
},
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"58E0E2F7-4F34-4C01-9AD6-777CABC1672F"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"8ACDE41E-CAE3-4A27-82EF-8F7452164A66"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"F00231C2-6AB5-470E-8F50-9FDD242DA75A"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"8934A41D-EC48-4E67-9F3C-EC87A4742499"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"5A81B891-D5D4-4765-A610-BF9FA7D55FAB"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"B8D224B4-3843-4270-B508-0D6D8147D3D2"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"C79630FE-7C73-4AA9-A68A-F1846204582B"
}
]
}
}
],
"content"
:
{
"basic"
:
{
"columns"
:
3
,
"datas"
:
[],
"qrcode"
:
{},
"subs"
:
[]
},
"gl"
:
{
"columns"
:
4
,
"datas"
:
[],
"subs"
:
[]
}
}
}
\ No newline at end of file
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/resources/json/equip_2000.json
deleted
100644 → 0
View file @
cbbdb252
{
"name"
:
"设备-压力容器"
,
"tabs"
:
[
{
"key"
:
"basic"
,
"displayName"
:
"设备信息"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1793458381554479105"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipInfo"
}
},
"paramFieldKeys"
:
[
"EQU_LIST"
,
"EQU_CATEGORY"
,
"EQU_DEFINE"
],
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"IMPORTED"
,
"dictionaryType"
:
"BOOLEN"
},
{
"fieldKey"
:
"USE_PLACE"
,
"dictionaryType"
:
"ADDRESS"
},
{
"fieldKey"
:
"INSPECT_CONCLUSION"
,
"dictionaryType"
:
"JYJL"
}
]
}
},
{
"key"
:
"ylrq"
,
"displayName"
:
"技术参数"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1734818687287848961"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipParams"
}
},
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"QP_LOSSLESS"
,
"dictionaryType"
:
"RQJCFF"
},
{
"fieldKey"
:
"RQJCFF"
,
"dictionaryType"
:
"RQJCFF"
},
{
"fieldKey"
:
"MAIN_STRUCTURE_TYPE"
,
"dictionaryType"
:
"RQJG"
},
{
"fieldKey"
:
"CHECK_LOSSLESS"
,
"dictionaryType"
:
"RQJCFF"
}
]
}
},
{
"key"
:
"reghistory"
,
"displayName"
:
"监管履历信息"
,
"renderType"
:
"timeline"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result"
,
"operater"
:
"content"
}
}
}
},
{
"key"
:
"devtable"
,
"displayName"
:
"问题列表"
,
"renderType"
:
"table"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"current"
:
1
,
"size"
:
14
,
"record"
:
"{record}"
}
}
},
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"58E0E2F7-4F34-4C01-9AD6-777CABC1672F"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"8ACDE41E-CAE3-4A27-82EF-8F7452164A66"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"F00231C2-6AB5-470E-8F50-9FDD242DA75A"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"8934A41D-EC48-4E67-9F3C-EC87A4742499"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"5A81B891-D5D4-4765-A610-BF9FA7D55FAB"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"B8D224B4-3843-4270-B508-0D6D8147D3D2"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"C79630FE-7C73-4AA9-A68A-F1846204582B"
}
]
}
}
],
"content"
:
{
"basic"
:
{
"columns"
:
3
,
"datas"
:
[],
"qrcode"
:
{},
"subs"
:
[]
},
"ylrq"
:
{
"columns"
:
4
,
"datas"
:
[],
"subs"
:
[]
}
}
}
\ No newline at end of file
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/resources/json/equip_3000.json
deleted
100644 → 0
View file @
cbbdb252
{
"name"
:
"设备-电梯"
,
"tabs"
:
[
{
"key"
:
"basic"
,
"displayName"
:
"设备信息"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1793458381554479105"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipInfo"
}
},
"paramFieldKeys"
:
[
"EQU_LIST"
,
"EQU_CATEGORY"
,
"EQU_DEFINE"
],
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"IMPORTED"
,
"dictionaryType"
:
"BOOLEN"
},
{
"fieldKey"
:
"USE_PLACE"
,
"dictionaryType"
:
"ADDRESS"
},
{
"fieldKey"
:
"INSPECT_CONCLUSION"
,
"dictionaryType"
:
"JYJL"
}
]
}
},
{
"key"
:
"dt"
,
"displayName"
:
"技术参数"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1734504628768239617"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipParams"
}
},
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"CONTROL_MODE"
,
"dictionaryType"
:
"KZFS"
},
{
"fieldKey"
:
"EXPLOSIONPROOF_GRADE"
,
"dictionaryType"
:
"FBDJ"
},
{
"fieldKey"
:
"JACKING_TYPE"
,
"dictionaryType"
:
"DSXS"
}
]
}
},
{
"key"
:
"reghistory"
,
"displayName"
:
"监管履历信息"
,
"renderType"
:
"timeline"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result"
,
"operater"
:
"content"
}
}
}
},
{
"key"
:
"devtable"
,
"displayName"
:
"问题列表"
,
"renderType"
:
"table"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"current"
:
1
,
"size"
:
14
,
"record"
:
"{record}"
}
}
},
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"58E0E2F7-4F34-4C01-9AD6-777CABC1672F"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"8ACDE41E-CAE3-4A27-82EF-8F7452164A66"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"F00231C2-6AB5-470E-8F50-9FDD242DA75A"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"8934A41D-EC48-4E67-9F3C-EC87A4742499"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"5A81B891-D5D4-4765-A610-BF9FA7D55FAB"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"B8D224B4-3843-4270-B508-0D6D8147D3D2"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"C79630FE-7C73-4AA9-A68A-F1846204582B"
}
]
}
}
],
"content"
:
{
"basic"
:
{
"columns"
:
3
,
"datas"
:
[],
"qrcode"
:
{},
"subs"
:
[]
},
"dt"
:
{
"columns"
:
4
,
"datas"
:
[],
"subs"
:
[]
}
}
}
\ No newline at end of file
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/resources/json/equip_4000.json
deleted
100644 → 0
View file @
cbbdb252
{
"name"
:
"设备-起重机械"
,
"tabs"
:
[
{
"key"
:
"basic"
,
"displayName"
:
"设备信息"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1793458381554479105"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipInfo"
}
},
"paramFieldKeys"
:
[
"EQU_LIST"
,
"EQU_CATEGORY"
,
"EQU_DEFINE"
],
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"IMPORTED"
,
"dictionaryType"
:
"BOOLEN"
},
{
"fieldKey"
:
"USE_PLACE"
,
"dictionaryType"
:
"ADDRESS"
},
{
"fieldKey"
:
"INSPECT_CONCLUSION"
,
"dictionaryType"
:
"JYJL"
}
]
}
},
{
"key"
:
"qzqx"
,
"displayName"
:
"技术参数"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1734818709194698753"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipParams"
}
},
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"WORK_LEVEL"
,
"dictionaryType"
:
"GZJB"
},
{
"fieldKey"
:
"select_bq8h7v9tj1"
,
"dictionaryType"
:
"FBDJ"
}
]
}
},
{
"key"
:
"reghistory"
,
"displayName"
:
"监管履历信息"
,
"renderType"
:
"timeline"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result"
,
"operater"
:
"content"
}
}
}
},
{
"key"
:
"devtable"
,
"displayName"
:
"问题列表"
,
"renderType"
:
"table"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"current"
:
1
,
"size"
:
14
,
"record"
:
"{record}"
}
}
},
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"58E0E2F7-4F34-4C01-9AD6-777CABC1672F"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"8ACDE41E-CAE3-4A27-82EF-8F7452164A66"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"F00231C2-6AB5-470E-8F50-9FDD242DA75A"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"8934A41D-EC48-4E67-9F3C-EC87A4742499"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"5A81B891-D5D4-4765-A610-BF9FA7D55FAB"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"B8D224B4-3843-4270-B508-0D6D8147D3D2"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"C79630FE-7C73-4AA9-A68A-F1846204582B"
}
]
}
}
],
"content"
:
{
"basic"
:
{
"columns"
:
3
,
"datas"
:
[],
"qrcode"
:
{},
"subs"
:
[]
},
"qzqx"
:
{
"columns"
:
4
,
"datas"
:
[],
"subs"
:
[]
}
}
}
\ No newline at end of file
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/resources/json/equip_5000.json
deleted
100644 → 0
View file @
cbbdb252
{
"name"
:
"设备-场(厂)内机动车"
,
"tabs"
:
[
{
"key"
:
"basic"
,
"displayName"
:
"设备信息"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1793458381554479105"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipInfo"
}
},
"paramFieldKeys"
:
[
"EQU_LIST"
,
"EQU_CATEGORY"
,
"EQU_DEFINE"
],
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"IMPORTED"
,
"dictionaryType"
:
"BOOLEN"
},
{
"fieldKey"
:
"USE_PLACE"
,
"dictionaryType"
:
"ADDRESS"
},
{
"fieldKey"
:
"INSPECT_CONCLUSION"
,
"dictionaryType"
:
"JYJL"
}
]
}
},
{
"key"
:
"cnjdc"
,
"displayName"
:
"技术参数"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1734818684284727297"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipParams"
}
},
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"PROTECT_GRADE"
,
"dictionaryType"
:
"FBDJ"
}
]
}
},
{
"key"
:
"reghistory"
,
"displayName"
:
"监管履历信息"
,
"renderType"
:
"timeline"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result"
,
"operater"
:
"content"
}
}
}
},
{
"key"
:
"devtable"
,
"displayName"
:
"问题列表"
,
"renderType"
:
"table"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"current"
:
1
,
"size"
:
14
,
"record"
:
"{record}"
}
}
},
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"58E0E2F7-4F34-4C01-9AD6-777CABC1672F"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"8ACDE41E-CAE3-4A27-82EF-8F7452164A66"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"F00231C2-6AB5-470E-8F50-9FDD242DA75A"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"8934A41D-EC48-4E67-9F3C-EC87A4742499"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"5A81B891-D5D4-4765-A610-BF9FA7D55FAB"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"B8D224B4-3843-4270-B508-0D6D8147D3D2"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"C79630FE-7C73-4AA9-A68A-F1846204582B"
}
]
}
}
],
"content"
:
{
"basic"
:
{
"columns"
:
3
,
"datas"
:
[],
"qrcode"
:
{},
"subs"
:
[]
},
"cnjdc"
:
{
"columns"
:
4
,
"datas"
:
[],
"subs"
:
[]
}
}
}
\ No newline at end of file
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/resources/json/equip_6000.json
deleted
100644 → 0
View file @
cbbdb252
{
"name"
:
"设备-大型游乐设施"
,
"tabs"
:
[
{
"key"
:
"basic"
,
"displayName"
:
"设备信息"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1793458381554479105"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipInfo"
}
},
"paramFieldKeys"
:
[
"EQU_LIST"
,
"EQU_CATEGORY"
,
"EQU_DEFINE"
],
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"IMPORTED"
,
"dictionaryType"
:
"BOOLEN"
},
{
"fieldKey"
:
"USE_PLACE"
,
"dictionaryType"
:
"ADDRESS"
},
{
"fieldKey"
:
"INSPECT_CONCLUSION"
,
"dictionaryType"
:
"JYJL"
}
]
}
},
{
"key"
:
"dxylss"
,
"displayName"
:
"技术参数"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1734818700369883137"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipParams"
}
}
}
},
{
"key"
:
"reghistory"
,
"displayName"
:
"监管履历信息"
,
"renderType"
:
"timeline"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result"
,
"operater"
:
"content"
}
}
}
},
{
"key"
:
"devtable"
,
"displayName"
:
"问题列表"
,
"renderType"
:
"table"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"current"
:
1
,
"size"
:
14
,
"record"
:
"{record}"
}
}
},
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"58E0E2F7-4F34-4C01-9AD6-777CABC1672F"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"8ACDE41E-CAE3-4A27-82EF-8F7452164A66"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"F00231C2-6AB5-470E-8F50-9FDD242DA75A"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"8934A41D-EC48-4E67-9F3C-EC87A4742499"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"5A81B891-D5D4-4765-A610-BF9FA7D55FAB"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"B8D224B4-3843-4270-B508-0D6D8147D3D2"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"C79630FE-7C73-4AA9-A68A-F1846204582B"
}
]
}
}
],
"content"
:
{
"basic"
:
{
"columns"
:
3
,
"datas"
:
[],
"qrcode"
:
{},
"subs"
:
[]
},
"dxylss"
:
{
"columns"
:
4
,
"datas"
:
[],
"subs"
:
[]
}
}
}
\ No newline at end of file
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/resources/json/equip_8000.json
deleted
100644 → 0
View file @
cbbdb252
{
"name"
:
"设备-压力管道"
,
"tabs"
:
[
{
"key"
:
"basic"
,
"displayName"
:
"设备信息"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1793458381554479105"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipInfo"
}
},
"paramFieldKeys"
:
[
"EQU_LIST"
,
"EQU_CATEGORY"
,
"EQU_DEFINE"
],
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"IMPORTED"
,
"dictionaryType"
:
"BOOLEN"
},
{
"fieldKey"
:
"USE_PLACE"
,
"dictionaryType"
:
"ADDRESS"
},
{
"fieldKey"
:
"INSPECT_CONCLUSION"
,
"dictionaryType"
:
"JYJL"
}
]
}
},
{
"key"
:
"ylgd"
,
"displayName"
:
"技术参数"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1734818687287848961"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipParams"
}
},
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"GDLB"
,
"dictionaryType"
:
"GDLB"
}
]
}
},
{
"key"
:
"reghistory"
,
"displayName"
:
"监管履历信息"
,
"renderType"
:
"timeline"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result"
,
"operater"
:
"content"
}
}
}
},
{
"key"
:
"devtable"
,
"displayName"
:
"问题列表"
,
"renderType"
:
"table"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"current"
:
1
,
"size"
:
14
,
"record"
:
"{record}"
}
}
},
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"58E0E2F7-4F34-4C01-9AD6-777CABC1672F"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"8ACDE41E-CAE3-4A27-82EF-8F7452164A66"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"F00231C2-6AB5-470E-8F50-9FDD242DA75A"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"8934A41D-EC48-4E67-9F3C-EC87A4742499"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"5A81B891-D5D4-4765-A610-BF9FA7D55FAB"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"B8D224B4-3843-4270-B508-0D6D8147D3D2"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"C79630FE-7C73-4AA9-A68A-F1846204582B"
}
]
}
}
],
"content"
:
{
"basic"
:
{
"columns"
:
3
,
"datas"
:
[],
"qrcode"
:
{},
"subs"
:
[]
},
"ylgd"
:
{
"columns"
:
4
,
"datas"
:
[],
"subs"
:
[]
}
}
}
\ No newline at end of file
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/resources/json/equip_9000.json
deleted
100644 → 0
View file @
cbbdb252
{
"name"
:
"设备-客运索道"
,
"tabs"
:
[
{
"key"
:
"basic"
,
"displayName"
:
"设备信息"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1793458381554479105"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipInfo"
}
},
"paramFieldKeys"
:
[
"EQU_LIST"
,
"EQU_CATEGORY"
,
"EQU_DEFINE"
],
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"IMPORTED"
,
"dictionaryType"
:
"BOOLEN"
},
{
"fieldKey"
:
"USE_PLACE"
,
"dictionaryType"
:
"ADDRESS"
},
{
"fieldKey"
:
"INSPECT_CONCLUSION"
,
"dictionaryType"
:
"JYJL"
}
]
}
},
{
"key"
:
"kysd"
,
"displayName"
:
"技术参数"
,
"renderType"
:
"basic"
,
"formSeq"
:
"1734818694514634753"
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/equipment-register/{record}"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result.equipParams"
}
},
"dictionaryFieldKeys"
:
[
{
"fieldKey"
:
"CARRIER_LINE"
,
"dictionaryType"
:
"YZS"
}
]
}
},
{
"key"
:
"reghistory"
,
"displayName"
:
"监管履历信息"
,
"renderType"
:
"timeline"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/common/equOnJgServiceOperationRecords"
,
"params"
:
{
"record"
:
"{record}"
},
"ruleData"
:
{
"responseSuccess"
:
"data.result"
,
"operater"
:
"content"
}
}
}
},
{
"key"
:
"devtable"
,
"displayName"
:
"问题列表"
,
"renderType"
:
"table"
,
"formSeq"
:
""
,
"dataConfig"
:
{
"api"
:
{
"httpMethod"
:
"GET"
,
"apiPath"
:
"/jg/safety-problem-tracing/equipId/page"
,
"params"
:
{
"current"
:
1
,
"size"
:
14
,
"record"
:
"{record}"
}
}
},
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"58E0E2F7-4F34-4C01-9AD6-777CABC1672F"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"8ACDE41E-CAE3-4A27-82EF-8F7452164A66"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"F00231C2-6AB5-470E-8F50-9FDD242DA75A"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"8934A41D-EC48-4E67-9F3C-EC87A4742499"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"5A81B891-D5D4-4765-A610-BF9FA7D55FAB"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"B8D224B4-3843-4270-B508-0D6D8147D3D2"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"C79630FE-7C73-4AA9-A68A-F1846204582B"
}
]
}
}
],
"content"
:
{
"basic"
:
{
"columns"
:
3
,
"datas"
:
[],
"qrcode"
:
{},
"subs"
:
[]
},
"kysd"
:
{
"columns"
:
4
,
"datas"
:
[],
"subs"
:
[]
}
}
}
\ No newline at end of file
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_1000.json
View file @
0c545ce1
...
...
@@ -119,15 +119,15 @@
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
58E0E2F7-4F34-4C01-9AD6-777CABC1672F
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
8ACDE41E-CAE3-4A27-82EF-8F7452164A66
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
F00231C2-6AB5-470E-8F50-9FDD242DA75A
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
8934A41D-EC48-4E67-9F3C-EC87A4742499
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
5A81B891-D5D4-4765-A610-BF9FA7D55FAB
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
B8D224B4-3843-4270-B508-0D6D8147D3D2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
C79630FE-7C73-4AA9-A68A-F1846204582B
"
}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
2
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
7
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
8
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
9
"
}
]
}
}
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_2000.json
View file @
0c545ce1
...
...
@@ -123,15 +123,15 @@
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
58E0E2F7-4F34-4C01-9AD6-777CABC1672F
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
8ACDE41E-CAE3-4A27-82EF-8F7452164A66
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
F00231C2-6AB5-470E-8F50-9FDD242DA75A
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
8934A41D-EC48-4E67-9F3C-EC87A4742499
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
5A81B891-D5D4-4765-A610-BF9FA7D55FAB
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
B8D224B4-3843-4270-B508-0D6D8147D3D2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
C79630FE-7C73-4AA9-A68A-F1846204582B
"
}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
2
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
7
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
8
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
9
"
}
]
}
}
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_3000.json
View file @
0c545ce1
...
...
@@ -119,15 +119,15 @@
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
58E0E2F7-4F34-4C01-9AD6-777CABC1672F
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
8ACDE41E-CAE3-4A27-82EF-8F7452164A66
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
F00231C2-6AB5-470E-8F50-9FDD242DA75A
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
8934A41D-EC48-4E67-9F3C-EC87A4742499
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
5A81B891-D5D4-4765-A610-BF9FA7D55FAB
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
B8D224B4-3843-4270-B508-0D6D8147D3D2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
C79630FE-7C73-4AA9-A68A-F1846204582B
"
}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
2
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
7
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
8
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
9
"
}
]
}
}
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_4000.json
View file @
0c545ce1
...
...
@@ -115,15 +115,15 @@
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
58E0E2F7-4F34-4C01-9AD6-777CABC1672F
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
8ACDE41E-CAE3-4A27-82EF-8F7452164A66
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
F00231C2-6AB5-470E-8F50-9FDD242DA75A
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
8934A41D-EC48-4E67-9F3C-EC87A4742499
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
5A81B891-D5D4-4765-A610-BF9FA7D55FAB
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
B8D224B4-3843-4270-B508-0D6D8147D3D2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
C79630FE-7C73-4AA9-A68A-F1846204582B
"
}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
2
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
7
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
8
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
9
"
}
]
}
}
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_5000.json
View file @
0c545ce1
...
...
@@ -111,15 +111,15 @@
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
58E0E2F7-4F34-4C01-9AD6-777CABC1672F
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
8ACDE41E-CAE3-4A27-82EF-8F7452164A66
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
F00231C2-6AB5-470E-8F50-9FDD242DA75A
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
8934A41D-EC48-4E67-9F3C-EC87A4742499
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
5A81B891-D5D4-4765-A610-BF9FA7D55FAB
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
B8D224B4-3843-4270-B508-0D6D8147D3D2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
C79630FE-7C73-4AA9-A68A-F1846204582B
"
}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
2
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
7
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
8
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
9
"
}
]
}
}
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_6000.json
View file @
0c545ce1
...
...
@@ -105,15 +105,15 @@
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
58E0E2F7-4F34-4C01-9AD6-777CABC1672F
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
8ACDE41E-CAE3-4A27-82EF-8F7452164A66
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
F00231C2-6AB5-470E-8F50-9FDD242DA75A
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
8934A41D-EC48-4E67-9F3C-EC87A4742499
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
5A81B891-D5D4-4765-A610-BF9FA7D55FAB
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
B8D224B4-3843-4270-B508-0D6D8147D3D2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
C79630FE-7C73-4AA9-A68A-F1846204582B
"
}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
2
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
7
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
8
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
9
"
}
]
}
}
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_8000.json
View file @
0c545ce1
...
...
@@ -111,15 +111,15 @@
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
58E0E2F7-4F34-4C01-9AD6-777CABC1672F
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
8ACDE41E-CAE3-4A27-82EF-8F7452164A66
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
F00231C2-6AB5-470E-8F50-9FDD242DA75A
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
8934A41D-EC48-4E67-9F3C-EC87A4742499
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
5A81B891-D5D4-4765-A610-BF9FA7D55FAB
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
B8D224B4-3843-4270-B508-0D6D8147D3D2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
C79630FE-7C73-4AA9-A68A-F1846204582B
"
}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
2
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
7
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
8
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
9
"
}
]
}
}
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/equip_9000.json
View file @
0c545ce1
...
...
@@ -111,15 +111,15 @@
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
58E0E2F7-4F34-4C01-9AD6-777CABC1672F
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
8ACDE41E-CAE3-4A27-82EF-8F7452164A66
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
9FAE9BDE-D285-4F5C-9EFB-F1560A78CBA4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
F00231C2-6AB5-470E-8F50-9FDD242DA75A
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
8934A41D-EC48-4E67-9F3C-EC87A4742499
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
5A81B891-D5D4-4765-A610-BF9FA7D55FAB
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
B8D224B4-3843-4270-B508-0D6D8147D3D2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
BAC9DA62-A6D7-4A75-BF9E-DB7AD0B1D4A6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
C79630FE-7C73-4AA9-A68A-F1846204582B
"
}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"sourceType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题主体类型"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"imageText"
,
"dataIndex"
:
"problemType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题类型"
,
"key"
:
"
2
"
,
"imageAttributeName"
:
"problemTypePic"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemDesc"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"问题描述"
,
"key"
:
"
3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemTime"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"问题时间"
,
"key"
:
"
4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnit"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"principalUnitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"单位类型"
,
"key"
:
"
6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"管辖机构"
,
"key"
:
"
7
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"regionName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"所属区域"
,
"key"
:
"
8
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatus"
,
"width"
:
100
,
"align"
:
"left"
,
"title"
:
"问题状态"
,
"key"
:
"
9
"
}
]
}
}
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/problem.json
View file @
0c545ce1
...
...
@@ -34,13 +34,13 @@
"visualParams"
:
{
"rowKey"
:
"record"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatusName"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"状态"
,
"key"
:
"
AA6DE857-C788-494F-8F16-2ECFC7E34528
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"equList"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"设备种类"
,
"key"
:
"
611DAF3D-5B79-466C-BEF2-CC91580091FA
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"equCategory"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"设备类别"
,
"key"
:
"
D1CB84A4-E037-446A-9469-65B76E381585
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"supervisoryCode"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"监管码"
,
"key"
:
"
0BB7318F-5134-42B6-A835-FC86D68066C2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"code96333"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"96333码"
,
"key"
:
"
6EB924FB-EFEA-4779-ADF8-78F310818D2D
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useUnitName"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
87C53BEA-829C-4539-9FCA-E2AF6A53DA15
"
},
{
"dataRenderingMode"
:
"actionDetailBtn"
,
"dataIndex"
:
"action"
,
"width"
:
60
,
"align"
:
"left"
,
"title"
:
"操作"
,
"key"
:
"
9
"
,
"conf"
:
{
"title"
:
"设备详情"
,
"linkModelKey"
:
"equip"
}}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatusName"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"状态"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"equList"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"设备种类"
,
"key"
:
"
2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"equCategory"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"设备类别"
,
"key"
:
"
3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"supervisoryCode"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"监管码"
,
"key"
:
"
4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"code96333"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"96333码"
,
"key"
:
"
5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useUnitName"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"
6
"
},
{
"dataRenderingMode"
:
"actionDetailBtn"
,
"dataIndex"
:
"action"
,
"width"
:
60
,
"align"
:
"left"
,
"title"
:
"操作"
,
"key"
:
"
7
"
,
"conf"
:
{
"title"
:
"设备详情"
,
"linkModelKey"
:
"equip"
}}
]
}
},
...
...
@@ -63,13 +63,13 @@
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatusName"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"状态"
,
"key"
:
"
AA6DE857-C788-494F-8F16-2ECFC7E34528
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"企业名称"
,
"key"
:
"
611DAF3D-5B79-466C-BEF2-CC91580091FA
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"unitType"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"企业类型"
,
"key"
:
"
D1CB84A4-E037-446A-9469-65B76E381585
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useUnitCode"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"企业统一信用代码"
,
"key"
:
"
0BB7318F-5134-42B6-A835-FC86D68066C2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useContact"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"企业联系人"
,
"key"
:
"
6EB924FB-EFEA-4779-ADF8-78F310818D2D
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"contactPhone"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"联系电话"
,
"key"
:
"
87C53BEA-829C-4539-9FCA-E2AF6A53DA15
"
},
{
"dataRenderingMode"
:
"actionDetailBtn"
,
"dataIndex"
:
"action"
,
"width"
:
60
,
"align"
:
"left"
,
"title"
:
"操作"
,
"key"
:
"
9
"
,
"conf"
:
{
"title"
:
"企业详情"
,
"linkModelKey"
:
"company"
}}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatusName"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"状态"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"企业名称"
,
"key"
:
"
2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"unitType"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"企业类型"
,
"key"
:
"
3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useUnitCode"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"企业统一信用代码"
,
"key"
:
"
4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useContact"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"企业联系人"
,
"key"
:
"
5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"contactPhone"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"联系电话"
,
"key"
:
"
6
"
},
{
"dataRenderingMode"
:
"actionDetailBtn"
,
"dataIndex"
:
"action"
,
"width"
:
60
,
"align"
:
"left"
,
"title"
:
"操作"
,
"key"
:
"
7
"
,
"conf"
:
{
"title"
:
"企业详情"
,
"linkModelKey"
:
"company"
}}
]
}
}
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/problem_cylinder.json
View file @
0c545ce1
...
...
@@ -34,13 +34,13 @@
"visualParams"
:
{
"rowKey"
:
"record"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatusName"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"状态"
,
"key"
:
"
AA6DE857-C788-494F-8F16-2ECFC7E34528
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"equList"
,
"width"
:
160
,
"align"
:
"left"
,
"title"
:
"设备种类"
,
"key"
:
"611DAF3D-5B79-466C-BEF2-CC91580091FA
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"equCategory"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"设备类别"
,
"key"
:
"D1CB84A4-E037-446A-9469-65B76E381585
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"supervisoryCode"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"监管码"
,
"key"
:
"0BB7318F-5134-42B6-A835-FC86D68066C2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"code96333"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"96333码"
,
"key"
:
"6EB924FB-EFEA-4779-ADF8-78F310818D2D
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useUnitName"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"87C53BEA-829C-4539-9FCA-E2AF6A53DA15
"
},
{
"dataRenderingMode"
:
"actionDetailBtn"
,
"dataIndex"
:
"action"
,
"width"
:
60
,
"align"
:
"left"
,
"title"
:
"操作"
,
"key"
:
"
9
"
,
"conf"
:
{
"title"
:
"设备详情"
,
"linkModelKey"
:
"equip"
}}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatusName"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"状态"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"equList"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"设备种类"
,
"key"
:
"2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"equCategory"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"设备类别"
,
"key"
:
"3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"supervisoryCode"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"监管码"
,
"key"
:
"4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"code96333"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"96333码"
,
"key"
:
"5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useUnitName"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"主体单位"
,
"key"
:
"6
"
},
{
"dataRenderingMode"
:
"actionDetailBtn"
,
"dataIndex"
:
"action"
,
"width"
:
60
,
"align"
:
"left"
,
"title"
:
"操作"
,
"key"
:
"
7
"
,
"conf"
:
{
"title"
:
"设备详情"
,
"linkModelKey"
:
"equip"
}}
]
}
},
...
...
@@ -63,13 +63,13 @@
"visualParams"
:
{
"rowKey"
:
"sequenceNbr"
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatusName"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"状态"
,
"key"
:
"
AA6DE857-C788-494F-8F16-2ECFC7E34528
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
160
,
"align"
:
"left"
,
"title"
:
"企业名称"
,
"key"
:
"611DAF3D-5B79-466C-BEF2-CC91580091FA
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"unitType"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"企业类型"
,
"key"
:
"D1CB84A4-E037-446A-9469-65B76E381585
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useUnitCode"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"企业统一信用代码"
,
"key"
:
"0BB7318F-5134-42B6-A835-FC86D68066C2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useContact"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"企业联系人"
,
"key"
:
"6EB924FB-EFEA-4779-ADF8-78F310818D2D
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"contactPhone"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"联系电话"
,
"key"
:
"87C53BEA-829C-4539-9FCA-E2AF6A53DA15
"
},
{
"dataRenderingMode"
:
"actionDetailBtn"
,
"dataIndex"
:
"action"
,
"width"
:
60
,
"align"
:
"left"
,
"title"
:
"操作"
,
"key"
:
"
9
"
,
"conf"
:
{
"title"
:
"企业详情"
,
"linkModelKey"
:
"company"
}}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"problemStatusName"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"状态"
,
"key"
:
"
1
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"governingBody"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"企业名称"
,
"key"
:
"2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"unitType"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"企业类型"
,
"key"
:
"3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useUnitCode"
,
"width"
:
300
,
"align"
:
"left"
,
"title"
:
"企业统一信用代码"
,
"key"
:
"4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"useContact"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"企业联系人"
,
"key"
:
"5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"contactPhone"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"联系电话"
,
"key"
:
"6
"
},
{
"dataRenderingMode"
:
"actionDetailBtn"
,
"dataIndex"
:
"action"
,
"width"
:
60
,
"align"
:
"left"
,
"title"
:
"操作"
,
"key"
:
"
7
"
,
"conf"
:
{
"title"
:
"企业详情"
,
"linkModelKey"
:
"company"
}}
]
}
}
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/resources/json/registration.json
View file @
0c545ce1
...
...
@@ -33,14 +33,14 @@
"rowKey"
:
"record"
,
"showPage"
:
true
,
"columns"
:
[
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"EQU_CATEGORY"
,
"width"
:
1
50
,
"align"
:
"left"
,
"title"
:
"设备类别"
,
"key"
:
"AA6DE857-C788-494F-8F16-2ECFC7E34528
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"EQU_DEFINE"
,
"width"
:
1
60
,
"align"
:
"left"
,
"title"
:
"设备品种"
,
"key"
:
"611DAF3D-5B79-466C-BEF2-CC91580091FA
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"PRODUCT_NAME"
,
"width"
:
150
,
"align"
:
"left"
,
"title"
:
"产品名称"
,
"key"
:
"D1CB84A4-E037-446A-9469-65B76E381585
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"FACTORY_NUM"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"产品编号"
,
"key"
:
"0BB7318F-5134-42B6-A835-FC86D68066C2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"USE_INNER_CODE"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"单位内编号"
,
"key"
:
"0BB7318F-5134-42B6-A835-FC86D68066C3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"EQU_CODE"
,
"width"
:
180
,
"align"
:
"left"
,
"title"
:
"设备代码"
,
"key"
:
"0BB7318F-5134-42B6-A835-FC86D68066C4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"SUPERVISORY_CODE"
,
"width"
:
1
80
,
"align"
:
"left"
,
"title"
:
"监管码"
,
"key"
:
"0BB7318F-5134-42B6-A835-FC86D68066C5
"
},
{
"dataRenderingMode"
:
"actionDetailBtn"
,
"dataIndex"
:
"action"
,
"width"
:
60
,
"align"
:
"left"
,
"title"
:
"操作"
,
"key"
:
"
9
"
,
"conf"
:
{
"title"
:
"设备详情"
,
"linkModelKey"
:
"equip"
}
}
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"EQU_CATEGORY"
,
"width"
:
1
20
,
"align"
:
"left"
,
"title"
:
"设备类别"
,
"key"
:
"1
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"EQU_DEFINE"
,
"width"
:
1
20
,
"align"
:
"left"
,
"title"
:
"设备品种"
,
"key"
:
"2
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"PRODUCT_NAME"
,
"width"
:
250
,
"align"
:
"left"
,
"title"
:
"产品名称"
,
"key"
:
"3
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"FACTORY_NUM"
,
"width"
:
250
,
"align"
:
"left"
,
"title"
:
"产品编号"
,
"key"
:
"4
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"USE_INNER_CODE"
,
"width"
:
250
,
"align"
:
"left"
,
"title"
:
"单位内编号"
,
"key"
:
"5
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"EQU_CODE"
,
"width"
:
200
,
"align"
:
"left"
,
"title"
:
"设备代码"
,
"key"
:
"6
"
},
{
"dataRenderingMode"
:
"defaultText"
,
"dataIndex"
:
"SUPERVISORY_CODE"
,
"width"
:
1
50
,
"align"
:
"left"
,
"title"
:
"监管码"
,
"key"
:
"7
"
},
{
"dataRenderingMode"
:
"actionDetailBtn"
,
"dataIndex"
:
"action"
,
"width"
:
60
,
"align"
:
"left"
,
"title"
:
"操作"
,
"key"
:
"
8
"
,
"conf"
:
{
"title"
:
"设备详情"
,
"linkModelKey"
:
"equip"
}
}
]
}
}
...
...
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