Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
H
hzsomms
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
ZTGK
hzsomms
Commits
07b32002
Commit
07b32002
authored
Aug 01, 2023
by
hkl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:1.动静态分析
parent
6463efa2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
29 deletions
+17
-29
ConfigInstrumentCheckController.java
...cAnalysis/controller/ConfigInstrumentCheckController.java
+9
-5
ConfigInstrumentCheck.java
...s/dynamicStaticAnalysis/entity/ConfigInstrumentCheck.java
+0
-20
添乘仪检查超限权值-曲线.json
.../modules/dynamicStaticAnalysis/template/添乘仪检查超限权值-曲线.json
+2
-1
添乘仪检查超限权值-竖曲线.json
...modules/dynamicStaticAnalysis/template/添乘仪检查超限权值-竖曲线.json
+2
-1
添乘仪检查超限权值-道岔.json
.../modules/dynamicStaticAnalysis/template/添乘仪检查超限权值-道岔.json
+2
-1
添乘仪检查超限权值-钢轨.json
.../modules/dynamicStaticAnalysis/template/添乘仪检查超限权值-钢轨.json
+2
-1
No files found.
jeecg-module-system/src/main/java/org/jeecg/modules/dynamicStaticAnalysis/controller/ConfigInstrumentCheckController.java
View file @
07b32002
...
...
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiOperation;
import
org.jeecg.common.api.vo.Result
;
import
org.jeecg.common.aspect.annotation.AutoLog
;
import
org.jeecg.modules.dynamicStaticAnalysis.entity.ConfigInstrumentCheck
;
import
org.jeecg.modules.dynamicStaticAnalysis.entity.ConfigRailDeviceCheck
;
import
org.jeecg.modules.dynamicStaticAnalysis.entity.ConfigRailVehicleCheck
;
import
org.jeecg.modules.dynamicStaticAnalysis.service.IConfigInstrumentCheckService
;
import
org.springframework.web.bind.annotation.*
;
...
...
@@ -28,11 +29,14 @@ import java.util.List;
public
class
ConfigInstrumentCheckController
extends
JeecgController
<
ConfigInstrumentCheck
,
IConfigInstrumentCheckService
>
{
@AutoLog
(
value
=
"动静态分析-配置参数-添乘仪检查超限权值-获取记录"
)
@ApiOperation
(
value
=
"动静态分析-配置参数-添乘仪检查超限权值-获取记录"
,
notes
=
"动静态分析-配置参数-轨检车检查超限权值-获取记录"
)
@GetMapping
(
value
=
"/listRecord"
)
public
Result
<
List
<
ConfigInstrumentCheck
>>
listRecord
()
{
List
<
ConfigInstrumentCheck
>
records
=
this
.
service
.
listRecord
();
return
Result
.
OK
(
records
);
@ApiOperation
(
value
=
"动静态分析-配置参数-添乘仪检查超限权值-获取记录"
,
notes
=
"动静态分析-配置参数-添乘仪检查超限权值-获取记录"
)
@GetMapping
(
value
=
"/oneRecord"
)
public
Result
<
ConfigInstrumentCheck
>
oneRecord
()
{
ConfigInstrumentCheck
oneRecord
=
this
.
service
.
lambdaQuery
()
.
eq
(
ConfigInstrumentCheck:
:
getDelFlag
,
0
)
.
last
(
"limit 1"
)
.
one
();
return
Result
.
OK
(
oneRecord
);
}
@AutoLog
(
value
=
"动静态分析-配置参数-添乘仪检查超限权值-更新参数"
)
...
...
jeecg-module-system/src/main/java/org/jeecg/modules/dynamicStaticAnalysis/entity/ConfigInstrumentCheck.java
View file @
07b32002
...
...
@@ -46,26 +46,6 @@ public class ConfigInstrumentCheck implements Serializable {
@TableField
(
"update_time"
)
private
Date
updateTime
;
@ApiModelProperty
(
"速度等级"
)
@TableField
(
"speed_expression"
)
private
String
speedExpression
;
@ApiModelProperty
(
"速度下限"
)
@TableField
(
"speed_min"
)
private
Integer
speedMin
;
@ApiModelProperty
(
"速度上限"
)
@TableField
(
"speed_max"
)
private
Integer
speedMax
;
@ApiModelProperty
(
"数据字典值"
)
@TableField
(
"dict_value"
)
private
String
dictValue
;
@ApiModelProperty
(
"数据字典标签"
)
@TableField
(
"dict_label"
)
private
String
dictLabel
;
@ApiModelProperty
(
"钢轨"
)
@TableField
(
"rail"
)
private
String
rail
;
...
...
jeecg-module-system/src/main/java/org/jeecg/modules/dynamicStaticAnalysis/template/添乘仪检查超限权值-曲线.json
View file @
07b32002
{
"name"
:
"添乘仪检查超限权值-曲线"
,
"verticalSpend"
:
"0.01"
,
"
zontalSpee
d"
:
"0.01"
"
transverseSpen
d"
:
"0.01"
}
\ No newline at end of file
jeecg-module-system/src/main/java/org/jeecg/modules/dynamicStaticAnalysis/template/添乘仪检查超限权值-竖曲线.json
View file @
07b32002
{
"name"
:
"添乘仪检查超限权值-竖曲线"
,
"verticalSpend"
:
"0.01"
,
"
zontalSpee
d"
:
"0.01"
"
transverseSpen
d"
:
"0.01"
}
\ No newline at end of file
jeecg-module-system/src/main/java/org/jeecg/modules/dynamicStaticAnalysis/template/添乘仪检查超限权值-道岔.json
View file @
07b32002
{
"name"
:
"添乘仪检查超限权值-道岔"
,
"verticalSpend"
:
"0.01"
,
"
zontalSpee
d"
:
"0.01"
"
transverseSpen
d"
:
"0.01"
}
\ No newline at end of file
jeecg-module-system/src/main/java/org/jeecg/modules/dynamicStaticAnalysis/template/添乘仪检查超限权值-钢轨.json
View file @
07b32002
{
"name"
:
"添乘仪检查超限权值-钢轨"
,
"verticalSpend"
:
"0.01"
,
"
zontalSpee
d"
:
"0.01"
"
transverseSpen
d"
:
"0.01"
}
\ No newline at end of file
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