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
869eefc6
Commit
869eefc6
authored
Jun 01, 2022
by
xixinzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ccs 站增加字段
parent
beb9f47e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
FireStationInfoDto.java
...join/amos/boot/module/ccs/api/dto/FireStationInfoDto.java
+10
-0
ccs-1.0.0.1.xml
...ystem-ccs/src/main/resources/db/changelog/ccs-1.0.0.1.xml
+13
-0
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-ccs-api/src/main/java/com/yeejoin/amos/boot/module/ccs/api/dto/FireStationInfoDto.java
View file @
869eefc6
...
...
@@ -86,4 +86,14 @@ public class FireStationInfoDto extends BaseDto {
@ApiModelProperty
(
value
=
"3维页面访问地址"
)
private
String
view3dUrl
;
@ApiModelProperty
(
value
=
"0-发送端,1-接收端"
)
private
String
elecType
;
@ApiModelProperty
(
value
=
"线路名称"
)
private
String
lineName
;
@ApiModelProperty
(
value
=
"关联站id"
)
private
String
stationContactId
;
}
amos-boot-system-ccs/src/main/resources/db/changelog/ccs-1.0.0.1.xml
View file @
869eefc6
...
...
@@ -5,5 +5,18 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd"
>
<changeSet
author=
"xxz"
id=
"xxz-20220601-1"
>
<preConditions
onFail=
"MARK_RAN"
>
<not>
<columnExists
tableName=
"asf_fire_station_info"
columnName=
"elec_type"
/>
</not>
</preConditions>
<comment>
asf_fire_station_info add `elec_type`
</comment>
<sql>
ALTER TABLE `wl_car_property` ADD COLUMN `elec_type` int(10) DEFAULT NULL COMMENT '0-发送端,1-接收端',
ADD COLUMN `line_name` varchar(255) DEFAULT NULL COMMENT '线路名称',
ADD COLUMN `station_contact_id` varchar(20) DEFAULT NULL COMMENT '关联站id';
</sql>
</changeSet>
</databaseChangeLog>
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