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
90cfc32e
Commit
90cfc32e
authored
Jul 02, 2025
by
麻笑宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor(technical-parameters):优化技术参数定义
- 将字符串类型的参数改为 BigDecimal 类型,以支持精确的数值计算 - 添加了单位属性,明确了每个参数的度量单位 - 优化了部分参数的类型,如层数、门数等改为 BigDecimal 类型 - 统一了速度、长度、重量等参数的表示方式
parent
303dd809
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
140 additions
and
140 deletions
+140
-140
BoilerTechParamsDefine.java
...os/boot/module/common/api/dto/BoilerTechParamsDefine.java
+17
-17
ElevatorTechParamDefine.java
...s/boot/module/common/api/dto/ElevatorTechParamDefine.java
+14
-14
LiftingTechParamDefine.java
...os/boot/module/common/api/dto/LiftingTechParamDefine.java
+27
-27
PipelineTechParamDefine.java
...s/boot/module/common/api/dto/PipelineTechParamDefine.java
+2
-2
RidesTechParamDefine.java
...amos/boot/module/common/api/dto/RidesTechParamDefine.java
+11
-11
RopewayTechParamDefine.java
...os/boot/module/common/api/dto/RopewayTechParamDefine.java
+9
-9
VehicleTechParamDefine.java
...os/boot/module/common/api/dto/VehicleTechParamDefine.java
+15
-15
VesselTechParamsDefine.java
...os/boot/module/common/api/dto/VesselTechParamsDefine.java
+44
-44
CompanyAdvanceSearchEnum.java
...module/statistics/api/enums/CompanyAdvanceSearchEnum.java
+1
-1
No files found.
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/BoilerTechParamsDefine.java
View file @
90cfc32e
...
...
@@ -18,51 +18,51 @@ public class BoilerTechParamsDefine implements ITechParamDefine {
private
String
deviceLevel
;
@TechnicalParameter
(
key
=
"ratedEvaporationCapacityThermalPower"
,
label
=
"额定蒸发量(热功率)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedEvaporationCapacityThermalPower"
,
label
=
"额定蒸发量(热功率)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"t/h(MW)"
)
private
String
ratedEvaporationCapacityThermalPower
;
@TechnicalParameter
(
key
=
"ratedWorkingPressure"
,
label
=
"额定工作压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedWorkingPressure"
,
label
=
"额定工作压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
ratedWorkingPressure
;
@TechnicalParameter
(
key
=
"ratedOperatingTemperature"
,
label
=
"额定工作温度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedOperatingTemperature"
,
label
=
"额定工作温度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
ratedOperatingTemperature
;
@TechnicalParameter
(
key
=
"designThermalEfficiency"
,
label
=
"设计热效率"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"designThermalEfficiency"
,
label
=
"设计热效率"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"%"
)
private
String
designThermalEfficiency
;
@TechnicalParameter
(
key
=
"feedwaterTemperature"
,
label
=
"给水温度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"feedwaterTemperature"
,
label
=
"给水温度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
feedwaterTemperature
;
@TechnicalParameter
(
key
=
"ratedOutletReturnWaterOilTemperature"
,
label
=
"额定出/回水(油)温度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedOutletReturnWaterOilTemperature"
,
label
=
"额定出/回水(油)温度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
ratedOutletReturnWaterOilTemperature
;
@TechnicalParameter
(
key
=
"waterOilVolumeOfBoilerProper"
,
label
=
"锅炉本体水(油)容积"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"waterOilVolumeOfBoilerProper"
,
label
=
"锅炉本体水(油)容积"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"L"
)
private
String
waterOilVolumeOfBoilerProper
;
@TechnicalParameter
(
key
=
"hydraulicTestMediumPressureOfPackagedBoilerBody"
,
label
=
"整装锅炉本体液压试验介质/压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"hydraulicTestMediumPressureOfPackagedBoilerBody"
,
label
=
"整装锅炉本体液压试验介质/压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
hydraulicTestMediumPressureOfPackagedBoilerBody
;
@TechnicalParameter
(
key
=
"inletOutletTemperatureOfReheater"
,
label
=
"再热器进(出)口温度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"inletOutletTemperatureOfReheater"
,
label
=
"再热器进(出)口温度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
inletOutletTemperatureOfReheater
;
@TechnicalParameter
(
key
=
"reheaterInletOutletPressure"
,
label
=
"再热器进(出)口压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"reheaterInletOutletPressure"
,
label
=
"再热器进(出)口压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
reheaterInletOutletPressure
;
@TechnicalParameter
(
key
=
"reheatSteamFlow"
,
label
=
"再热蒸汽流量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"reheatSteamFlow"
,
label
=
"再热蒸汽流量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"t/h"
)
private
String
reheatSteamFlow
;
@TechnicalParameter
(
key
=
"glAirtightTest"
,
label
=
"有机热载体锅炉气密试验介质/压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"glAirtightTest"
,
label
=
"有机热载体锅炉气密试验介质/压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
glAirtightTest
;
...
...
@@ -78,7 +78,7 @@ public class BoilerTechParamsDefine implements ITechParamDefine {
private
String
materialOfPressureParts
;
@TechnicalParameter
(
key
=
"wallThicknessOfPressureParts"
,
label
=
"受压部件壁厚"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"wallThicknessOfPressureParts"
,
label
=
"受压部件壁厚"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
wallThicknessOfPressureParts
;
...
...
@@ -86,15 +86,15 @@ public class BoilerTechParamsDefine implements ITechParamDefine {
private
String
nonDestructiveTestingMethodsForPressureParts
;
@TechnicalParameter
(
key
=
"proportionOfNdtForPressureParts"
,
label
=
"受压部件无损检测比例"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"proportionOfNdtForPressureParts"
,
label
=
"受压部件无损检测比例"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"%"
)
private
String
proportionOfNdtForPressureParts
;
@TechnicalParameter
(
key
=
"heatTreatmentTemperatureOfPressureParts"
,
label
=
"受压部件热处理温度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"heatTreatmentTemperatureOfPressureParts"
,
label
=
"受压部件热处理温度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
heatTreatmentTemperatureOfPressureParts
;
@TechnicalParameter
(
key
=
"heatTreatmentTimeOfPressureParts"
,
label
=
"受压部件热处理时间"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"heatTreatmentTimeOfPressureParts"
,
label
=
"受压部件热处理时间"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"h"
)
private
String
heatTreatmentTimeOfPressureParts
;
...
...
@@ -102,7 +102,7 @@ public class BoilerTechParamsDefine implements ITechParamDefine {
private
String
hydrostaticTestMedium
;
@TechnicalParameter
(
key
=
"hydrostaticTestPressure"
,
label
=
"受压部件水(耐)压试验压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"hydrostaticTestPressure"
,
label
=
"受压部件水(耐)压试验压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
hydrostaticTestPressure
;
...
...
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/ElevatorTechParamDefine.java
View file @
90cfc32e
...
...
@@ -15,31 +15,31 @@ import lombok.Data;
public
class
ElevatorTechParamDefine
implements
ITechParamDefine
{
@TechnicalParameter
(
key
=
"ratedSpeedUp"
,
label
=
"额定速度(上行)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedSpeedUp"
,
label
=
"额定速度(上行)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/s"
)
private
String
ratedSpeedUp
;
@TechnicalParameter
(
key
=
"ratedSpeedDown"
,
label
=
"额定速度(下行)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedSpeedDown"
,
label
=
"额定速度(下行)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/s"
)
private
String
ratedSpeedDown
;
@TechnicalParameter
(
key
=
"ratedLoadCapacity"
,
label
=
"额定载重量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedLoadCapacity"
,
label
=
"额定载重量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"kg"
)
private
String
ratedLoadCapacity
;
@TechnicalParameter
(
key
=
"liftingHeight"
,
label
=
"提升高度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"liftingHeight"
,
label
=
"提升高度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
liftingHeight
;
@TechnicalParameter
(
key
=
"deviceLevel"
,
label
=
"层数"
,
type
=
TechnicalParameter
.
ParamType
.
INTEGER
)
@TechnicalParameter
(
key
=
"deviceLevel"
,
label
=
"层数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"层"
)
private
Integer
deviceLevel
;
@TechnicalParameter
(
key
=
"stand"
,
label
=
"站数"
,
type
=
TechnicalParameter
.
ParamType
.
INTEGER
)
@TechnicalParameter
(
key
=
"stand"
,
label
=
"站数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"站"
)
private
Integer
stand
;
@TechnicalParameter
(
key
=
"numberDoors"
,
label
=
"门数"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"numberDoors"
,
label
=
"门数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"门数"
)
private
Integer
numberDoors
;
...
...
@@ -47,7 +47,7 @@ public class ElevatorTechParamDefine implements ITechParamDefine {
private
String
controlMode
;
@TechnicalParameter
(
key
=
"numberCylinders"
,
label
=
"油缸数量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"numberCylinders"
,
label
=
"油缸数量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
)
private
Integer
numberCylinders
;
...
...
@@ -63,22 +63,22 @@ public class ElevatorTechParamDefine implements ITechParamDefine {
private
String
explosionproofSignComplete
;
@TechnicalParameter
(
key
=
"nominalSpeed"
,
label
=
"名义速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"nominalSpeed"
,
label
=
"名义速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/s"
)
private
String
nominalSpeed
;
@TechnicalParameter
(
key
=
"nominalWidth"
,
label
=
"名义宽度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"nominalWidth"
,
label
=
"名义宽度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
nominalWidth
;
@TechnicalParameter
(
key
=
"angleRoll"
,
label
=
"倾斜角"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"angleRoll"
,
label
=
"倾斜角"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
)
private
String
angleRoll
;
@TechnicalParameter
(
key
=
"useSectionLength"
,
label
=
"使用区段长度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"useSectionLength"
,
label
=
"使用区段长度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
useSectionLength
;
@TechnicalParameter
(
key
=
"conveyingCapacity"
,
label
=
"输送能力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"conveyingCapacity"
,
label
=
"输送能力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"P/h"
)
private
String
conveyingCapacity
;
...
...
@@ -86,6 +86,6 @@ public class ElevatorTechParamDefine implements ITechParamDefine {
private
String
doorPosition
;
@TechnicalParameter
(
key
=
"ratedSpeed"
,
label
=
"额定速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedSpeed"
,
label
=
"额定速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/s"
)
private
String
ratedSpeed
;
}
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/LiftingTechParamDefine.java
View file @
90cfc32e
...
...
@@ -14,27 +14,27 @@ import lombok.Data;
@Group
(
"4000"
)
public
class
LiftingTechParamDefine
implements
ITechParamDefine
{
@TechnicalParameter
(
key
=
"ratedLiftingCapacity"
,
label
=
"额定起重量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedLiftingCapacity"
,
label
=
"额定起重量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"t"
)
private
String
ratedLiftingCapacity
;
@TechnicalParameter
(
key
=
"maxLiftingCapacity"
,
label
=
"最大起重量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"maxLiftingCapacity"
,
label
=
"最大起重量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"t"
)
private
String
maxLiftingCapacity
;
@TechnicalParameter
(
key
=
"maxLiftingTorque"
,
label
=
"最大起重力矩"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"maxLiftingTorque"
,
label
=
"最大起重力矩"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"KN.m"
)
private
String
maxLiftingTorque
;
@TechnicalParameter
(
key
=
"spanWorkingRange"
,
label
=
"跨度(工作幅度)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"spanWorkingRange"
,
label
=
"跨度(工作幅度)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
spanWorkingRange
;
@TechnicalParameter
(
key
=
"liftingSpeed"
,
label
=
"起升速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"liftingSpeed"
,
label
=
"起升速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/min"
)
private
String
liftingSpeed
;
@TechnicalParameter
(
key
=
"liftingHeight"
,
label
=
"起升高度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"liftingHeight"
,
label
=
"起升高度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
liftingHeight
;
...
...
@@ -42,59 +42,59 @@ public class LiftingTechParamDefine implements ITechParamDefine {
private
String
workLevel
;
@TechnicalParameter
(
key
=
"ratedLiftingTorque"
,
label
=
"额定起重力矩"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedLiftingTorque"
,
label
=
"额定起重力矩"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"KN.m"
)
private
String
ratedLiftingTorque
;
@TechnicalParameter
(
key
=
"numberStorey"
,
label
=
"层数/泊位数"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"numberStorey"
,
label
=
"层数/泊位数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"层"
)
private
Integer
numberStorey
;
@TechnicalParameter
(
key
=
"runningSpeed"
,
label
=
"运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"runningSpeed"
,
label
=
"运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/min"
)
private
String
runningSpeed
;
@TechnicalParameter
(
key
=
"bigcarRunSpeed"
,
label
=
"大车运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"bigcarRunSpeed"
,
label
=
"大车运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/min"
)
private
String
bigcarRunSpeed
;
@TechnicalParameter
(
key
=
"smallcarrunSpeed"
,
label
=
"小车运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"smallcarrunSpeed"
,
label
=
"小车运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/min"
)
private
String
smallcarrunSpeed
;
@TechnicalParameter
(
key
=
"ratedMembers"
,
label
=
"额定
成员数"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedMembers"
,
label
=
"额定
乘员数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"人"
)
private
Integer
ratedMembers
;
@TechnicalParameter
(
key
=
"ratedLiftingSpeed"
,
label
=
"额定提升速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedLiftingSpeed"
,
label
=
"额定提升速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/min"
)
private
String
ratedLiftingSpeed
;
@TechnicalParameter
(
key
=
"heightFreeEnd"
,
label
=
"自由端高度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"heightFreeEnd"
,
label
=
"自由端高度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
heightFreeEnd
;
@TechnicalParameter
(
key
=
"workStrokeCage"
,
label
=
"吊笼工作行程"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"workStrokeCage"
,
label
=
"吊笼工作行程"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
workStrokeCage
;
@TechnicalParameter
(
key
=
"storageCapacity"
,
label
=
"存容量"
,
type
=
TechnicalParameter
.
ParamType
.
INTEGER
)
@TechnicalParameter
(
key
=
"storageCapacity"
,
label
=
"存容量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"辆"
)
private
Integer
storageCapacity
;
@TechnicalParameter
(
key
=
"ratedLiftSpeed"
,
label
=
"额定升降速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedLiftSpeed"
,
label
=
"额定升降速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/min"
)
private
String
ratedLiftSpeed
;
@TechnicalParameter
(
key
=
"ratedTraverseSpeed"
,
label
=
"额定横移速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedTraverseSpeed"
,
label
=
"额定横移速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/min"
)
private
String
ratedTraverseSpeed
;
@TechnicalParameter
(
key
=
"bicycleMaxExitTime"
,
label
=
"单车最大进(出)车时间"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"bicycleMaxExitTime"
,
label
=
"单车最大进(出)车时间"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"s"
)
private
String
bicycleMaxExitTime
;
@TechnicalParameter
(
key
=
"bicycleMaxComeTime"
,
label
=
"单车最大进车时间"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"bicycleMaxComeTime"
,
label
=
"单车最大进车时间"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"s"
)
private
String
bicycleMaxComeTime
;
...
...
@@ -102,14 +102,14 @@ public class LiftingTechParamDefine implements ITechParamDefine {
private
String
explosionProofGrade
;
@TechnicalParameter
(
key
=
"cantileverLength"
,
label
=
"悬臂长度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"cantileverLength"
,
label
=
"悬臂长度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
cantileverLength
;
@TechnicalParameter
(
key
=
"derrickingSpeed"
,
label
=
"变幅速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"derrickingSpeed"
,
label
=
"变幅速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/min"
)
private
String
derrickingSpeed
;
@TechnicalParameter
(
key
=
"hangingCagesNumber"
,
label
=
"吊笼数量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"hangingCagesNumber"
,
label
=
"吊笼数量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"个"
)
private
String
hangingCagesNumber
;
...
...
@@ -121,19 +121,19 @@ public class LiftingTechParamDefine implements ITechParamDefine {
private
String
explosionproofSignComplete
;
@TechnicalParameter
(
key
=
"ratedSpeedUp"
,
label
=
"监检结束高度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedSpeedUp"
,
label
=
"监检结束高度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
ratedSpeedUp
;
@TechnicalParameter
(
key
=
"parkingVehicleHeight"
,
label
=
"适停车辆尺寸高"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"parkingVehicleHeight"
,
label
=
"适停车辆尺寸高"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
parkingVehicleHeight
;
@TechnicalParameter
(
key
=
"parkingVehicleWeight"
,
label
=
"适停车辆尺寸宽"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"parkingVehicleWeight"
,
label
=
"适停车辆尺寸宽"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
parkingVehicleWeight
;
@TechnicalParameter
(
key
=
"parkingVehicleLength"
,
label
=
"适停车辆尺寸长"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"parkingVehicleLength"
,
label
=
"适停车辆尺寸长"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
parkingVehicleLength
;
}
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/PipelineTechParamDefine.java
View file @
90cfc32e
...
...
@@ -35,11 +35,11 @@ public class PipelineTechParamDefine implements ITechParamDefine {
private
String
wallThickness
;
@TechnicalParameter
(
key
=
"pipeLength"
,
label
=
"管道长度"
,
type
=
TechnicalParameter
.
ParamType
.
FLOAT
)
@TechnicalParameter
(
key
=
"pipeLength"
,
label
=
"管道长度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
Double
pipeLength
;
@TechnicalParameter
(
key
=
"pressure"
,
label
=
"设计压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"pressure"
,
label
=
"设计压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"Mpa"
)
private
String
pressure
;
...
...
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/RidesTechParamDefine.java
View file @
90cfc32e
...
...
@@ -15,47 +15,47 @@ import lombok.Data;
public
class
RidesTechParamDefine
implements
ITechParamDefine
{
@TechnicalParameter
(
key
=
"trackHeight"
,
label
=
"轨道高度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"trackHeight"
,
label
=
"轨道高度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
trackHeight
;
@TechnicalParameter
(
key
=
"runningSpeed"
,
label
=
"运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"runningSpeed"
,
label
=
"运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"km/h (m/s)"
)
private
String
runningSpeed
;
@TechnicalParameter
(
key
=
"numberOfPassengers"
,
label
=
"乘坐人数"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"numberOfPassengers"
,
label
=
"乘坐人数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"人"
)
private
Integer
numberOfPassengers
;
@TechnicalParameter
(
key
=
"slideLength"
,
label
=
"滑道长度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"slideLength"
,
label
=
"滑道长度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
slideLength
;
@TechnicalParameter
(
key
=
"operatingHeight"
,
label
=
"运行高度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"operatingHeight"
,
label
=
"运行高度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
operatingHeight
;
@TechnicalParameter
(
key
=
"slideHeight"
,
label
=
"蹦极绳长度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"slideHeight"
,
label
=
"蹦极绳长度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
slideHeight
;
@TechnicalParameter
(
key
=
"rotaryDiameter"
,
label
=
"回转直径"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"rotaryDiameter"
,
label
=
"回转直径"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
rotaryDiameter
;
@TechnicalParameter
(
key
=
"unilateralSwingAngle"
,
label
=
"单边摆角"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"unilateralSwingAngle"
,
label
=
"单边摆角"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"°"
)
private
String
unilateralSwingAngle
;
@TechnicalParameter
(
key
=
"numberOfVehicles"
,
label
=
"车辆数"
,
type
=
TechnicalParameter
.
ParamType
.
INTEGER
)
@TechnicalParameter
(
key
=
"numberOfVehicles"
,
label
=
"车辆数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"个"
)
private
Integer
numberOfVehicles
;
@TechnicalParameter
(
key
=
"dip"
,
label
=
"倾角"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"dip"
,
label
=
"倾角"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"°"
)
private
String
dip
;
@TechnicalParameter
(
key
=
"equipmentHeight"
,
label
=
"设备高度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"equipmentHeight"
,
label
=
"设备高度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
equipmentHeight
;
}
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/RopewayTechParamDefine.java
View file @
90cfc32e
...
...
@@ -14,15 +14,15 @@ import lombok.Data;
@Group
(
"9000"
)
public
class
RopewayTechParamDefine
implements
ITechParamDefine
{
@TechnicalParameter
(
key
=
"horizontalDistance"
,
label
=
"平距"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"horizontalDistance"
,
label
=
"平距"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
horizontalDistance
;
@TechnicalParameter
(
key
=
"supportsCount"
,
label
=
"支架数目"
,
type
=
TechnicalParameter
.
ParamType
.
INTEGER
)
@TechnicalParameter
(
key
=
"supportsCount"
,
label
=
"支架数目"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"座"
)
private
Integer
supportsCount
;
@TechnicalParameter
(
key
=
"obliqueLength"
,
label
=
"斜长"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"obliqueLength"
,
label
=
"斜长"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
obliqueLength
;
...
...
@@ -30,33 +30,33 @@ public class RopewayTechParamDefine implements ITechParamDefine {
private
String
mainMotorModel
;
@TechnicalParameter
(
key
=
"mainMotorPower"
,
label
=
"主电机功率"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"mainMotorPower"
,
label
=
"主电机功率"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"W"
)
private
String
mainMotorPower
;
@TechnicalParameter
(
key
=
"altitudeDifference"
,
label
=
"高差"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"altitudeDifference"
,
label
=
"高差"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
altitudeDifference
;
@TechnicalParameter
(
key
=
"freightVolume"
,
label
=
"运量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"freightVolume"
,
label
=
"运量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"p/h"
)
private
String
freightVolume
;
@TechnicalParameter
(
key
=
"carrierLine"
,
label
=
"运载索"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
,
dictCode
=
"YZS"
)
private
String
carrierLine
;
@TechnicalParameter
(
key
=
"speed"
,
label
=
"速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"speed"
,
label
=
"速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m/s"
)
private
String
speed
;
@TechnicalParameter
(
key
=
"bearingCable"
,
label
=
"承载索"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
private
String
bearingCable
;
@TechnicalParameter
(
key
=
"cablePitch"
,
label
=
"索距"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"cablePitch"
,
label
=
"索距"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m"
)
private
String
cablePitch
;
@TechnicalParameter
(
key
=
"oilPressureHeavyHammer"
,
label
=
"张紧油压(重锤重量)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"oilPressureHeavyHammer"
,
label
=
"张紧油压(重锤重量)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
oilPressureHeavyHammer
;
...
...
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/VehicleTechParamDefine.java
View file @
90cfc32e
...
...
@@ -23,7 +23,7 @@ public class VehicleTechParamDefine implements ITechParamDefine {
private
String
engineNo
;
@TechnicalParameter
(
key
=
"liftingCapacity"
,
label
=
"额定起重量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"liftingCapacity"
,
label
=
"额定起重量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"Kg"
)
private
String
liftingCapacity
;
...
...
@@ -31,18 +31,18 @@ public class VehicleTechParamDefine implements ITechParamDefine {
private
String
transmissionMode
;
@TechnicalParameter
(
key
=
"weight"
,
label
=
"自重"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"weight"
,
label
=
"自重"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"Kg"
)
private
String
weight
;
@TechnicalParameter
(
key
=
"powerMode"
,
label
=
"动力方式"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
private
String
powerMode
;
@TechnicalParameter
(
key
=
"maxRunningSpeed"
,
label
=
"最大运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"maxRunningSpeed"
,
label
=
"最大运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"km/h"
)
private
String
maxRunningSpeed
;
@TechnicalParameter
(
key
=
"maxLiftingHeight"
,
label
=
"工作装置空载最大起升高度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"maxLiftingHeight"
,
label
=
"工作装置空载最大起升高度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
maxLiftingHeight
;
...
...
@@ -58,7 +58,7 @@ public class VehicleTechParamDefine implements ITechParamDefine {
private
String
drivingMode
;
@TechnicalParameter
(
key
=
"carryingIdlerMaxRunningSpeed"
,
label
=
"空载最大运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"carryingIdlerMaxRunningSpeed"
,
label
=
"空载最大运行速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"km/h"
)
private
String
carryingIdlerMaxRunningSpeed
;
...
...
@@ -70,43 +70,43 @@ public class VehicleTechParamDefine implements ITechParamDefine {
private
String
temperatureGroup
;
@TechnicalParameter
(
key
=
"passengersNumber"
,
label
=
"额定载客人数"
,
type
=
TechnicalParameter
.
ParamType
.
INTEGER
)
@TechnicalParameter
(
key
=
"passengersNumber"
,
label
=
"额定载客人数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"人"
)
private
Integer
passengersNumber
;
@TechnicalParameter
(
key
=
"maxDrivingSlope"
,
label
=
"最大行驶坡度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"maxDrivingSlope"
,
label
=
"最大行驶坡度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
)
private
String
maxDrivingSlope
;
@TechnicalParameter
(
key
=
"vehicleMass"
,
label
=
"整车整备质量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"vehicleMass"
,
label
=
"整车整备质量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"Kg"
)
private
String
vehicleMass
;
@TechnicalParameter
(
key
=
"wheelBase"
,
label
=
"轴距"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"wheelBase"
,
label
=
"轴距"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
wheelBase
;
@TechnicalParameter
(
key
=
"trackWidthFront"
,
label
=
"轮距(前)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"trackWidthFront"
,
label
=
"轮距(前)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
trackWidthFront
;
@TechnicalParameter
(
key
=
"trackWidthBehind"
,
label
=
"轮距(后)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"trackWidthBehind"
,
label
=
"轮距(后)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
trackWidthBehind
;
@TechnicalParameter
(
key
=
"carsNumber"
,
label
=
"观光列车车厢数"
,
type
=
TechnicalParameter
.
ParamType
.
INTEGER
)
@TechnicalParameter
(
key
=
"carsNumber"
,
label
=
"观光列车车厢数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"节"
)
private
Integer
carsNumber
;
@TechnicalParameter
(
key
=
"seatNumber"
,
label
=
"观光列车每节车厢座位数"
,
type
=
TechnicalParameter
.
ParamType
.
INTEGER
)
@TechnicalParameter
(
key
=
"seatNumber"
,
label
=
"观光列车每节车厢座位数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"个"
)
private
Integer
seatNumber
;
@TechnicalParameter
(
key
=
"tractorSeatNumber"
,
label
=
"观光列车牵引车头座位数"
,
type
=
TechnicalParameter
.
ParamType
.
INTEGER
)
@TechnicalParameter
(
key
=
"tractorSeatNumber"
,
label
=
"观光列车牵引车头座位数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"个"
)
private
Integer
tractorSeatNumber
;
@TechnicalParameter
(
key
=
"maxLiftingSpeed"
,
label
=
"空载最大起升速度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"maxLiftingSpeed"
,
label
=
"空载最大起升速度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"km/h"
)
private
String
maxLiftingSpeed
;
}
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/VesselTechParamsDefine.java
View file @
90cfc32e
...
...
@@ -14,22 +14,22 @@ import lombok.Data;
@Group
(
"2000"
)
public
class
VesselTechParamsDefine
implements
ITechParamDefine
{
@TechnicalParameter
(
key
=
"ratedQuality"
,
label
=
"额定质量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedQuality"
,
label
=
"额定质量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"kg"
)
private
String
ratedQuality
;
@TechnicalParameter
(
key
=
"ambientTemperature"
,
label
=
"使用环境温度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ambientTemperature"
,
label
=
"使用环境温度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
ambientTemperature
;
@TechnicalParameter
(
key
=
"modelNumber"
,
label
=
"型号"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
private
String
modelNumber
;
@TechnicalParameter
(
key
=
"num"
,
label
=
"数量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"num"
,
label
=
"数量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
)
private
Integer
num
;
@TechnicalParameter
(
key
=
"singleBottleVolume"
,
label
=
"单瓶容积"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"singleBottleVolume"
,
label
=
"单瓶容积"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"L"
)
private
String
singleBottleVolume
;
@TechnicalParameter
(
key
=
"totalVolume"
,
label
=
"总容积"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"totalVolume"
,
label
=
"总容积"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m³"
)
private
String
totalVolume
;
@TechnicalParameter
(
key
=
"chargingMedium"
,
label
=
"充装介质"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
...
...
@@ -38,16 +38,16 @@ public class VesselTechParamsDefine implements ITechParamDefine {
@TechnicalParameter
(
key
=
"specification"
,
label
=
"规格"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
private
String
specification
;
@TechnicalParameter
(
key
=
"outsideDiameter"
,
label
=
"外径"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"outsideDiameter"
,
label
=
"外径"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
)
private
String
outsideDiameter
;
@TechnicalParameter
(
key
=
"wallThickness"
,
label
=
"壁厚"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"wallThickness"
,
label
=
"壁厚"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
)
private
String
wallThickness
;
@TechnicalParameter
(
key
=
"length"
,
label
=
"长度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"length"
,
label
=
"长度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
)
private
String
length
;
@TechnicalParameter
(
key
=
"nominalWorkingPressure"
,
label
=
"公称工作压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"nominalWorkingPressure"
,
label
=
"公称工作压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
nominalWorkingPressure
;
@TechnicalParameter
(
key
=
"bottleBody"
,
label
=
"材料(瓶体)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
...
...
@@ -65,47 +65,47 @@ public class VesselTechParamsDefine implements ITechParamDefine {
@TechnicalParameter
(
key
=
"glLossless"
,
label
=
"无损检测方法(管路)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
private
String
glLossless
;
@TechnicalParameter
(
key
=
"qpRatio"
,
label
=
"无损检测比例(气瓶)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"qpRatio"
,
label
=
"无损检测比例(气瓶)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"%"
)
private
String
qpRatio
;
@TechnicalParameter
(
key
=
"glRatio"
,
label
=
"无损检测比例(管路)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"glRatio"
,
label
=
"无损检测比例(管路)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"%"
)
private
String
glRatio
;
@TechnicalParameter
(
key
=
"qpPressure"
,
label
=
"耐压试验压力(气瓶)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"qpPressure"
,
label
=
"耐压试验压力(气瓶)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
qpPressure
;
@TechnicalParameter
(
key
=
"glPressure"
,
label
=
"耐压试验压力(管路)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"glPressure"
,
label
=
"耐压试验压力(管路)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
glPressure
;
@TechnicalParameter
(
key
=
"qpAirTightness"
,
label
=
"气密性试验压力(气瓶)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"qpAirTightness"
,
label
=
"气密性试验压力(气瓶)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
qpAirTightness
;
@TechnicalParameter
(
key
=
"glAirTightness"
,
label
=
"气密性试验压力(管路)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"glAirTightness"
,
label
=
"气密性试验压力(管路)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
glAirTightness
;
@TechnicalParameter
(
key
=
"displacementPressure"
,
label
=
"气体置换后压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"displacementPressure"
,
label
=
"气体置换后压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
displacementPressure
;
@TechnicalParameter
(
key
=
"oxygen"
,
label
=
"瓶体内含氧量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"oxygen"
,
label
=
"瓶体内含氧量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"%"
)
private
String
oxygen
;
@TechnicalParameter
(
key
=
"heatTreatmentMethod"
,
label
=
"瓶体内含氧量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"heatTreatmentMethod"
,
label
=
"瓶体内含氧量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"%"
)
private
String
heatTreatmentMethod
;
@TechnicalParameter
(
key
=
"qpHeatTreatmentTemperature"
,
label
=
"热处理温度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"qpHeatTreatmentTemperature"
,
label
=
"热处理温度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
qpHeatTreatmentTemperature
;
@TechnicalParameter
(
key
=
"installationPosition"
,
label
=
"气瓶安装位置"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
private
String
installationPosition
;
@TechnicalParameter
(
key
=
"containerVolume"
,
label
=
"容器容积"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"containerVolume"
,
label
=
"容器容积"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m³"
)
private
String
containerVolume
;
@TechnicalParameter
(
key
=
"pressureVesselDiameter"
,
label
=
"容器内径"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"pressureVesselDiameter"
,
label
=
"容器内径"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
pressureVesselDiameter
;
@TechnicalParameter
(
key
=
"height"
,
label
=
"容器高(长)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"height"
,
label
=
"容器高(长)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
height
;
@TechnicalParameter
(
key
=
"materialCylinderShell"
,
label
=
"材料(筒体(球壳))"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
...
...
@@ -120,22 +120,22 @@ public class VesselTechParamsDefine implements ITechParamDefine {
@TechnicalParameter
(
key
=
"materialJacket"
,
label
=
"材料(夹套)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
private
String
materialJacket
;
@TechnicalParameter
(
key
=
"thickness"
,
label
=
"厚度(筒体(球壳))"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"thickness"
,
label
=
"厚度(筒体(球壳))"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
thickness
;
@TechnicalParameter
(
key
=
"fixedHead"
,
label
=
"厚度(封头)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"fixedHead"
,
label
=
"厚度(封头)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
fixedHead
;
@TechnicalParameter
(
key
=
"fixedLining"
,
label
=
"厚度(衬里)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"fixedLining"
,
label
=
"厚度(衬里)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
fixedLining
;
@TechnicalParameter
(
key
=
"fixedJacket"
,
label
=
"厚度(夹套)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"fixedJacket"
,
label
=
"厚度(夹套)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
fixedJacket
;
@TechnicalParameter
(
key
=
"selfWeight"
,
label
=
"容器自重"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"selfWeight"
,
label
=
"容器自重"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"kg"
)
private
String
selfWeight
;
@TechnicalParameter
(
key
=
"mediumWeight"
,
label
=
"盛装介质重量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"mediumWeight"
,
label
=
"盛装介质重量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"kg"
)
private
String
mediumWeight
;
@TechnicalParameter
(
key
=
"pressureHousingPath"
,
label
=
"设计压力(壳程)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
...
...
@@ -147,13 +147,13 @@ public class VesselTechParamsDefine implements ITechParamDefine {
@TechnicalParameter
(
key
=
"pressureJacket"
,
label
=
"设计压力(夹套)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
private
String
pressureJacket
;
@TechnicalParameter
(
key
=
"temperatureShell"
,
label
=
"设计温度(壳程)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"temperatureShell"
,
label
=
"设计温度(壳程)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
temperatureShell
;
@TechnicalParameter
(
key
=
"temperaturePipe"
,
label
=
"设计温度(管程)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"temperaturePipe"
,
label
=
"设计温度(管程)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
temperaturePipe
;
@TechnicalParameter
(
key
=
"temperatureJacket"
,
label
=
"设计温度(夹套)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"temperatureJacket"
,
label
=
"设计温度(夹套)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
temperatureJacket
;
@TechnicalParameter
(
key
=
"maxPressureShell"
,
label
=
"最高允许工作压力(壳程)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
...
...
@@ -206,11 +206,11 @@ public class VesselTechParamsDefine implements ITechParamDefine {
private
String
leakage
;
@TechnicalParameter
(
key
=
"withstandPressureTest"
,
label
=
"泄漏试验压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"withstandPressureTest"
,
label
=
"泄漏试验压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
withstandPressureTest
;
@TechnicalParameter
(
key
=
"leakPressure"
,
label
=
"泄漏试验压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"leakPressure"
,
label
=
"泄漏试验压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
leakPressure
;
...
...
@@ -222,11 +222,11 @@ public class VesselTechParamsDefine implements ITechParamDefine {
private
String
carNum
;
@TechnicalParameter
(
key
=
"volume"
,
label
=
"容积"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"volume"
,
label
=
"容积"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"L"
)
private
String
volume
;
@TechnicalParameter
(
key
=
"maxFill"
,
label
=
"最大充装量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"maxFill"
,
label
=
"最大充装量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"kg"
)
private
String
maxFill
;
...
...
@@ -234,15 +234,15 @@ public class VesselTechParamsDefine implements ITechParamDefine {
private
String
designPressure
;
@TechnicalParameter
(
key
=
"designTemperature"
,
label
=
"设计温度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"designTemperature"
,
label
=
"设计温度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
designTemperature
;
@TechnicalParameter
(
key
=
"workingPressure"
,
label
=
"工作压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"workingPressure"
,
label
=
"工作压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
workingPressure
;
@TechnicalParameter
(
key
=
"workTemperature"
,
label
=
"工作温度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"workTemperature"
,
label
=
"工作温度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
workTemperature
;
...
...
@@ -250,11 +250,11 @@ public class VesselTechParamsDefine implements ITechParamDefine {
private
String
materialCylinder
;
@TechnicalParameter
(
key
=
"thicknessCylinder"
,
label
=
"厚度(筒体)"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"thicknessCylinder"
,
label
=
"厚度(筒体)"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
thicknessCylinder
;
@TechnicalParameter
(
key
=
"corrosionMargin"
,
label
=
"腐蚀裕量"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"corrosionMargin"
,
label
=
"腐蚀裕量"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"mm"
)
private
String
corrosionMargin
;
...
...
@@ -266,7 +266,7 @@ public class VesselTechParamsDefine implements ITechParamDefine {
private
String
oxygenChamber
;
@TechnicalParameter
(
key
=
"ratedEntryCapacity"
,
label
=
"额定进舱人数"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"ratedEntryCapacity"
,
label
=
"额定进舱人数"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"人"
)
private
Integer
ratedEntryCapacity
;
...
...
@@ -274,11 +274,11 @@ public class VesselTechParamsDefine implements ITechParamDefine {
private
String
chamberMain
;
@TechnicalParameter
(
key
=
"chamberPressure"
,
label
=
"压力"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"chamberPressure"
,
label
=
"压力"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"MPa"
)
private
String
chamberPressure
;
@TechnicalParameter
(
key
=
"temperature"
,
label
=
"温度"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"temperature"
,
label
=
"温度"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"℃"
)
private
String
temperature
;
...
...
@@ -286,7 +286,7 @@ public class VesselTechParamsDefine implements ITechParamDefine {
private
String
pressureMedium
;
@TechnicalParameter
(
key
=
"perCapitaCabinCapacity"
,
label
=
"人均舱容"
,
type
=
TechnicalParameter
.
ParamType
.
STRING
)
@TechnicalParameter
(
key
=
"perCapitaCabinCapacity"
,
label
=
"人均舱容"
,
type
=
TechnicalParameter
.
ParamType
.
BIG_DECIMAL
,
unit
=
"m³"
)
private
String
perCapitaCabinCapacity
;
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-api/src/main/java/com/yeejoin/amos/boot/module/statistics/api/enums/CompanyAdvanceSearchEnum.java
View file @
90cfc32e
...
...
@@ -16,7 +16,7 @@ public enum CompanyAdvanceSearchEnum {
ADDRESS
(
"详细地址"
,
"address"
,
TechnicalParameter
.
ParamType
.
STRING
,
""
,
null
,
null
),
EXPIRYDATE
(
"许可有效期"
,
"expiryDate"
,
TechnicalParameter
.
ParamType
.
DATE
,
""
,
null
,
null
),
UNIT_TYPE
(
"企业类型"
,
"unitType"
,
null
,
"/statistics/comprehensiveStatisticalAnalysis/select/queryUnitType"
,
null
,
null
),
REGULATORY_LABELS
(
"企业等级"
,
"regulatoryLabels"
,
null
,
"
"
,
null
,
null
),
REGULATORY_LABELS
(
"企业等级"
,
"regulatoryLabels"
,
null
,
"
/statistics/comprehensiveStatisticalAnalysis/select/queryDicData?type={type}"
,
"QYBQ"
,
null
),
INDUSTRY_SUPERVISOR
(
"行业主管部门"
,
"industrySupervisor"
,
null
,
"/statistics/comprehensiveStatisticalAnalysis/select/queryDicData?type={type}"
,
"HYZGBM"
,
null
),
ITEM_CODE
(
"许可项目"
,
"itemCode"
,
null
,
"/statistics/comprehensiveStatisticalAnalysis/select/queryXK"
,
null
,
null
),
SUB_ITEM_CODE
(
"许可子项目"
,
"subItemCode"
,
null
,
"/statistics/comprehensiveStatisticalAnalysis/select/queryXK?type={type}"
,
null
,
"itemCode"
),
...
...
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