Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
YeeAmosFireAutoSysRoot
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
station
YeeAmosFireAutoSysRoot
Commits
60f67b73
Commit
60f67b73
authored
Apr 20, 2020
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.修改字段
parent
89b4030e
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
30 additions
and
26 deletions
+30
-26
Equipment.java
.../main/java/com/yeejoin/amos/fas/dao/entity/Equipment.java
+3
-4
FireCar.java
...rc/main/java/com/yeejoin/amos/fas/dao/entity/FireCar.java
+2
-0
FireEquipment.java
...n/java/com/yeejoin/amos/fas/dao/entity/FireEquipment.java
+2
-0
FireStation.java
...ain/java/com/yeejoin/amos/fas/dao/entity/FireStation.java
+3
-5
RiskSource.java
...main/java/com/yeejoin/amos/fas/dao/entity/RiskSource.java
+3
-0
WaterResource.java
...n/java/com/yeejoin/amos/fas/dao/entity/WaterResource.java
+4
-4
fas-2.0.1.xml
...utoSysStart/src/main/resources/db/changelog/fas-2.0.1.xml
+13
-13
No files found.
YeeAmosFireAutoSysCommon/src/main/java/com/yeejoin/amos/fas/dao/entity/Equipment.java
View file @
60f67b73
package
com
.
yeejoin
.
amos
.
fas
.
dao
.
entity
;
package
com
.
yeejoin
.
amos
.
fas
.
dao
.
entity
;
import
javax.persistence.Column
;
import
javax.persistence.*
;
import
javax.persistence.Entity
;
import
javax.persistence.NamedQuery
;
import
javax.persistence.Table
;
/**
/**
...
@@ -114,12 +111,14 @@ public class Equipment extends BasicEntity {
...
@@ -114,12 +111,14 @@ public class Equipment extends BasicEntity {
/**
/**
* ue4位置
* ue4位置
*/
*/
@Lob
@Column
(
name
=
"ue4_location"
)
@Column
(
name
=
"ue4_location"
)
private
String
ue4Location
;
private
String
ue4Location
;
/**
/**
* ue4旋转
* ue4旋转
*/
*/
@Lob
@Column
(
name
=
"ue4_rotation"
)
@Column
(
name
=
"ue4_rotation"
)
private
String
ue4Rotation
;
private
String
ue4Rotation
;
...
...
YeeAmosFireAutoSysCommon/src/main/java/com/yeejoin/amos/fas/dao/entity/FireCar.java
View file @
60f67b73
...
@@ -79,12 +79,14 @@ public class FireCar extends BasicEntity {
...
@@ -79,12 +79,14 @@ public class FireCar extends BasicEntity {
/**
/**
* ue4位置
* ue4位置
*/
*/
@Lob
@Column
(
name
=
"ue4_location"
)
@Column
(
name
=
"ue4_location"
)
private
String
ue4Location
;
private
String
ue4Location
;
/**
/**
* ue4旋转
* ue4旋转
*/
*/
@Lob
@Column
(
name
=
"ue4_rotation"
)
@Column
(
name
=
"ue4_rotation"
)
private
String
ue4Rotation
;
private
String
ue4Rotation
;
...
...
YeeAmosFireAutoSysCommon/src/main/java/com/yeejoin/amos/fas/dao/entity/FireEquipment.java
View file @
60f67b73
...
@@ -124,12 +124,14 @@ public class FireEquipment extends BasicEntity {
...
@@ -124,12 +124,14 @@ public class FireEquipment extends BasicEntity {
/**
/**
* ue4位置
* ue4位置
*/
*/
@Lob
@Column
(
name
=
"ue4_location"
)
@Column
(
name
=
"ue4_location"
)
private
String
ue4Location
;
private
String
ue4Location
;
/**
/**
* ue4旋转
* ue4旋转
*/
*/
@Lob
@Column
(
name
=
"ue4_rotation"
)
@Column
(
name
=
"ue4_rotation"
)
private
String
ue4Rotation
;
private
String
ue4Rotation
;
...
...
YeeAmosFireAutoSysCommon/src/main/java/com/yeejoin/amos/fas/dao/entity/FireStation.java
View file @
60f67b73
...
@@ -3,11 +3,7 @@ package com.yeejoin.amos.fas.dao.entity;
...
@@ -3,11 +3,7 @@ package com.yeejoin.amos.fas.dao.entity;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map
;
import
javax.persistence.Column
;
import
javax.persistence.*
;
import
javax.persistence.Entity
;
import
javax.persistence.NamedQuery
;
import
javax.persistence.Table
;
import
javax.persistence.Transient
;
/**
/**
* 消防站点
* 消防站点
...
@@ -87,12 +83,14 @@ public class FireStation extends BasicEntity{
...
@@ -87,12 +83,14 @@ public class FireStation extends BasicEntity{
/**
/**
* ue4位置
* ue4位置
*/
*/
@Lob
@Column
(
name
=
"ue4_location"
)
@Column
(
name
=
"ue4_location"
)
private
String
ue4Location
;
private
String
ue4Location
;
/**
/**
* ue4旋转
* ue4旋转
*/
*/
@Lob
@Column
(
name
=
"ue4_rotation"
)
@Column
(
name
=
"ue4_rotation"
)
private
String
ue4Rotation
;
private
String
ue4Rotation
;
...
...
YeeAmosFireAutoSysCommon/src/main/java/com/yeejoin/amos/fas/dao/entity/RiskSource.java
View file @
60f67b73
...
@@ -57,18 +57,21 @@ public class RiskSource extends BasicEntity {
...
@@ -57,18 +57,21 @@ public class RiskSource extends BasicEntity {
/**
/**
* ue4位置
* ue4位置
*/
*/
@Lob
@Column
(
name
=
"ue4_location"
)
@Column
(
name
=
"ue4_location"
)
private
String
ue4Location
;
private
String
ue4Location
;
/**
/**
* ue4旋转
* ue4旋转
*/
*/
@Lob
@Column
(
name
=
"ue4_rotation"
)
@Column
(
name
=
"ue4_rotation"
)
private
String
ue4Rotation
;
private
String
ue4Rotation
;
/**
/**
* ue4缩放
* ue4缩放
*/
*/
@Lob
@Column
(
name
=
"ue4_extent"
)
@Column
(
name
=
"ue4_extent"
)
private
String
ue4Extent
;
private
String
ue4Extent
;
...
...
YeeAmosFireAutoSysCommon/src/main/java/com/yeejoin/amos/fas/dao/entity/WaterResource.java
View file @
60f67b73
package
com
.
yeejoin
.
amos
.
fas
.
dao
.
entity
;
package
com
.
yeejoin
.
amos
.
fas
.
dao
.
entity
;
import
javax.persistence.Column
;
import
javax.persistence.*
;
import
javax.persistence.Entity
;
import
javax.persistence.NamedQuery
;
import
javax.persistence.Table
;
/**
/**
* 水资源
* 水资源
* @author
* @author
...
@@ -88,12 +86,14 @@ public class WaterResource extends BasicEntity{
...
@@ -88,12 +86,14 @@ public class WaterResource extends BasicEntity{
/**
/**
* ue4位置
* ue4位置
*/
*/
@Lob
@Column
(
name
=
"ue4_location"
)
@Column
(
name
=
"ue4_location"
)
private
String
ue4Location
;
private
String
ue4Location
;
/**
/**
* ue4旋转
* ue4旋转
*/
*/
@Lob
@Column
(
name
=
"ue4_rotation"
)
@Column
(
name
=
"ue4_rotation"
)
private
String
ue4Rotation
;
private
String
ue4Rotation
;
...
...
YeeAmosFireAutoSysStart/src/main/resources/db/changelog/fas-2.0.1.xml
View file @
60f67b73
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
</preConditions>
</preConditions>
<comment>
f_risk_source add column ue4_location
</comment>
<comment>
f_risk_source add column ue4_location
</comment>
<sql>
<sql>
alter table `f_risk_source` add column `ue4_location`
json
default null comment 'ue4位置' after `position3d`;
alter table `f_risk_source` add column `ue4_location`
text
default null comment 'ue4位置' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587349916716-2"
>
<changeSet
author=
"suhuiguang"
id=
"1587349916716-2"
>
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
</preConditions>
</preConditions>
<comment>
f_risk_source add column ue4_rotation
</comment>
<comment>
f_risk_source add column ue4_rotation
</comment>
<sql>
<sql>
alter table `f_risk_source` add column `ue4_rotation`
json
default null comment 'ue4旋转' after `position3d`;
alter table `f_risk_source` add column `ue4_rotation`
text
default null comment 'ue4旋转' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587349916716-3"
>
<changeSet
author=
"suhuiguang"
id=
"1587349916716-3"
>
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
</preConditions>
</preConditions>
<comment>
f_risk_source add column ue4_extent
</comment>
<comment>
f_risk_source add column ue4_extent
</comment>
<sql>
<sql>
alter table `f_risk_source` add column `ue4_extent`
json
default null comment 'ue4缩放' after `position3d`;
alter table `f_risk_source` add column `ue4_extent`
text
default null comment 'ue4缩放' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587351415717-1"
>
<changeSet
author=
"suhuiguang"
id=
"1587351415717-1"
>
...
@@ -47,7 +47,7 @@
...
@@ -47,7 +47,7 @@
</preConditions>
</preConditions>
<comment>
f_equipment add column ue4_location
</comment>
<comment>
f_equipment add column ue4_location
</comment>
<sql>
<sql>
alter table `f_equipment` add column `ue4_location`
json
default null comment 'ue4位置' after `position3d`;
alter table `f_equipment` add column `ue4_location`
text
default null comment 'ue4位置' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587351415717-2"
>
<changeSet
author=
"suhuiguang"
id=
"1587351415717-2"
>
...
@@ -58,7 +58,7 @@
...
@@ -58,7 +58,7 @@
</preConditions>
</preConditions>
<comment>
f_equipment add column ue4_rotation
</comment>
<comment>
f_equipment add column ue4_rotation
</comment>
<sql>
<sql>
alter table `f_equipment` add column `ue4_rotation`
json
default null comment 'ue4旋转' after `position3d`;
alter table `f_equipment` add column `ue4_rotation`
text
default null comment 'ue4旋转' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587350445716-1"
>
<changeSet
author=
"suhuiguang"
id=
"1587350445716-1"
>
...
@@ -69,7 +69,7 @@
...
@@ -69,7 +69,7 @@
</preConditions>
</preConditions>
<comment>
f_fire_car add column ue4_location
</comment>
<comment>
f_fire_car add column ue4_location
</comment>
<sql>
<sql>
alter table `f_fire_car` add column `ue4_location`
json
default null comment 'ue4位置' after `position3d`;
alter table `f_fire_car` add column `ue4_location`
text
default null comment 'ue4位置' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587350445716-2"
>
<changeSet
author=
"suhuiguang"
id=
"1587350445716-2"
>
...
@@ -80,7 +80,7 @@
...
@@ -80,7 +80,7 @@
</preConditions>
</preConditions>
<comment>
f_fire_car add column ue4_rotation
</comment>
<comment>
f_fire_car add column ue4_rotation
</comment>
<sql>
<sql>
alter table `f_fire_car` add column `ue4_rotation`
json
default null comment 'ue4旋转' after `position3d`;
alter table `f_fire_car` add column `ue4_rotation`
text
default null comment 'ue4旋转' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587350552716-1"
>
<changeSet
author=
"suhuiguang"
id=
"1587350552716-1"
>
...
@@ -91,7 +91,7 @@
...
@@ -91,7 +91,7 @@
</preConditions>
</preConditions>
<comment>
f_fire_equipment add column ue4_location
</comment>
<comment>
f_fire_equipment add column ue4_location
</comment>
<sql>
<sql>
alter table `f_fire_equipment` add column `ue4_location`
json
default null comment 'ue4位置' after `position3d`;
alter table `f_fire_equipment` add column `ue4_location`
text
default null comment 'ue4位置' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587350552716-2"
>
<changeSet
author=
"suhuiguang"
id=
"1587350552716-2"
>
...
@@ -102,7 +102,7 @@
...
@@ -102,7 +102,7 @@
</preConditions>
</preConditions>
<comment>
f_fire_equipment add column ue4_rotation
</comment>
<comment>
f_fire_equipment add column ue4_rotation
</comment>
<sql>
<sql>
alter table `f_fire_equipment` add column `ue4_rotation`
json
default null comment 'ue4旋转' after `position3d`;
alter table `f_fire_equipment` add column `ue4_rotation`
text
default null comment 'ue4旋转' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587350593716-1"
>
<changeSet
author=
"suhuiguang"
id=
"1587350593716-1"
>
...
@@ -113,7 +113,7 @@
...
@@ -113,7 +113,7 @@
</preConditions>
</preConditions>
<comment>
f_fire_station add column ue4_location
</comment>
<comment>
f_fire_station add column ue4_location
</comment>
<sql>
<sql>
alter table `f_fire_station` add column `ue4_location`
json
default null comment 'ue4位置' after `position3d`;
alter table `f_fire_station` add column `ue4_location`
text
default null comment 'ue4位置' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587350593716-2"
>
<changeSet
author=
"suhuiguang"
id=
"1587350593716-2"
>
...
@@ -124,7 +124,7 @@
...
@@ -124,7 +124,7 @@
</preConditions>
</preConditions>
<comment>
f_fire_station add column ue4_rotation
</comment>
<comment>
f_fire_station add column ue4_rotation
</comment>
<sql>
<sql>
alter table `f_fire_station` add column `ue4_rotation`
json
default null comment 'ue4旋转' after `position3d`;
alter table `f_fire_station` add column `ue4_rotation`
text
default null comment 'ue4旋转' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587350759717-1"
>
<changeSet
author=
"suhuiguang"
id=
"1587350759717-1"
>
...
@@ -135,7 +135,7 @@
...
@@ -135,7 +135,7 @@
</preConditions>
</preConditions>
<comment>
f_water_resource add column ue4_location
</comment>
<comment>
f_water_resource add column ue4_location
</comment>
<sql>
<sql>
alter table `f_water_resource` add column `ue4_location`
json
default null comment 'ue4位置' after `position3d`;
alter table `f_water_resource` add column `ue4_location`
text
default null comment 'ue4位置' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587350759717-2"
>
<changeSet
author=
"suhuiguang"
id=
"1587350759717-2"
>
...
@@ -146,7 +146,7 @@
...
@@ -146,7 +146,7 @@
</preConditions>
</preConditions>
<comment>
f_water_resource add column ue4_rotation
</comment>
<comment>
f_water_resource add column ue4_rotation
</comment>
<sql>
<sql>
alter table `f_water_resource` add column `ue4_rotation`
json
default null comment 'ue4旋转' after `position3d`;
alter table `f_water_resource` add column `ue4_rotation`
text
default null comment 'ue4旋转' after `position3d`;
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"suhuiguang"
id=
"1587350860716-1"
>
<changeSet
author=
"suhuiguang"
id=
"1587350860716-1"
>
...
...
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