Commit 869eefc6 authored by xixinzhao's avatar xixinzhao

ccs 站增加字段

parent beb9f47e
......@@ -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;
}
......@@ -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>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment