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
87367c70
Commit
87367c70
authored
Sep 13, 2022
by
zhangsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
消防系统基本属性增加设计单位和主要设计人员
parent
3b81f518
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
3 deletions
+40
-3
FireFightingSystemEntity.java
...n/equipmanage/common/entity/FireFightingSystemEntity.java
+5
-0
FireFightingSystemVo.java
...m/yeejoin/equipmanage/common/vo/FireFightingSystemVo.java
+10
-0
wl-3.0.1.xml
...ot-system-equip/src/main/resources/changelog/wl-3.0.1.xml
+14
-0
EquipmentManageMapper.xml
...equip/src/main/resources/mapper/EquipmentManageMapper.xml
+2
-0
FireFightingSystemMapper.xml
...ip/src/main/resources/mapper/FireFightingSystemMapper.xml
+9
-3
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/entity/FireFightingSystemEntity.java
View file @
87367c70
...
@@ -133,4 +133,9 @@ public class FireFightingSystemEntity {
...
@@ -133,4 +133,9 @@ public class FireFightingSystemEntity {
@ApiModelProperty
(
value
=
"分析报告统计用参数(为空不统计) "
)
@ApiModelProperty
(
value
=
"分析报告统计用参数(为空不统计) "
)
private
String
analysisIndexKey
;
private
String
analysisIndexKey
;
@ApiModelProperty
(
value
=
"责任单位"
)
private
String
designOrg
;
@ApiModelProperty
(
value
=
"主要设计人员"
)
private
String
leadDesigner
;
}
}
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/vo/FireFightingSystemVo.java
View file @
87367c70
...
@@ -176,4 +176,14 @@ public class FireFightingSystemVo implements Serializable {
...
@@ -176,4 +176,14 @@ public class FireFightingSystemVo implements Serializable {
*/
*/
private
String
bizOrgName
;
private
String
bizOrgName
;
/**
* 责任单位
*/
private
String
designOrg
;
/**
* 主要设计人员
*/
private
String
leadDesigner
;
}
}
amos-boot-system-equip/src/main/resources/changelog/wl-3.0.1.xml
View file @
87367c70
...
@@ -2973,4 +2973,17 @@
...
@@ -2973,4 +2973,17 @@
END
END
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"zs"
id=
"202209131015-1"
>
<preConditions
onFail=
"MARK_RAN"
>
<not>
<columnExists
tableName=
"f_fire_fighting_system"
columnName=
"design_org"
/>
</not>
</preConditions>
<comment>
任务9322 系统基础属性加字段
</comment>
<sql>
ALTER TABLE `f_fire_fighting_system` ADD COLUMN `design_org` varchar(255) DEFAULT NULL COMMENT '设计单位',
ADD COLUMN `lead_designer` varchar(255) DEFAULT NULL COMMENT '主要设计人员';
</sql>
</changeSet>
</databaseChangeLog>
</databaseChangeLog>
\ No newline at end of file
amos-boot-system-equip/src/main/resources/mapper/EquipmentManageMapper.xml
View file @
87367c70
...
@@ -21,6 +21,8 @@
...
@@ -21,6 +21,8 @@
biz_org_code as bizOrgCode,
biz_org_code as bizOrgCode,
biz_org_name as bizOrgName,
biz_org_name as bizOrgName,
scene_id as sceneId,
scene_id as sceneId,
design_org,
lead_designer,
(select count(1) from `wl_equipment_specific` es where find_in_set(sys.id,es.system_id) and es.single = true ) equipCount
(select count(1) from `wl_equipment_specific` es where find_in_set(sys.id,es.system_id) and es.single = true ) equipCount
from
from
f_fire_fighting_system as sys
f_fire_fighting_system as sys
...
...
amos-boot-system-equip/src/main/resources/mapper/FireFightingSystemMapper.xml
View file @
87367c70
...
@@ -99,7 +99,9 @@
...
@@ -99,7 +99,9 @@
factory,
factory,
contro_box_address,
contro_box_address,
biz_org_code,
biz_org_code,
biz_org_name
biz_org_name,
design_org,
lead_designer
)
)
VALUES(
VALUES(
#{id},
#{id},
...
@@ -127,7 +129,9 @@
...
@@ -127,7 +129,9 @@
#{factory},
#{factory},
#{controBoxAddress},
#{controBoxAddress},
#{bizOrgCode},
#{bizOrgCode},
#{bizOrgName}
#{bizOrgName},
#{designOrg},
#{leadDesigner}
)
)
</insert>
</insert>
<insert
id=
"insertFile"
>
<insert
id=
"insertFile"
>
...
@@ -174,7 +178,9 @@
...
@@ -174,7 +178,9 @@
form_group_id =#{formGroupId},
form_group_id =#{formGroupId},
contro_box_address = #{controBoxAddress},
contro_box_address = #{controBoxAddress},
biz_org_code=#{bizOrgCode},
biz_org_code=#{bizOrgCode},
biz_org_name=#{bizOrgName}
biz_org_name=#{bizOrgName},
design_org = #{designOrg},
lead_designer = #{leadDesigner}
where id = #{id}
where id = #{id}
</update>
</update>
<delete
id=
"deleteFilre"
>
<delete
id=
"deleteFilre"
>
...
...
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