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
361da354
Commit
361da354
authored
Oct 11, 2022
by
litengwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
任务 9899
parent
8a73eb42
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
1 deletion
+28
-1
Equipment.java
...java/com/yeejoin/equipmanage/common/entity/Equipment.java
+4
-1
wl-3.6.0.xml
...ot-system-equip/src/main/resources/changelog/wl-3.6.0.xml
+24
-0
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/entity/Equipment.java
View file @
361da354
...
@@ -38,12 +38,15 @@ public class Equipment extends BaseEntity {
...
@@ -38,12 +38,15 @@ public class Equipment extends BaseEntity {
@ApiModelProperty
(
value
=
"国别"
)
@ApiModelProperty
(
value
=
"国别"
)
private
String
country
;
private
String
country
;
@ApiModelProperty
(
value
=
"
保养
周期"
)
@ApiModelProperty
(
value
=
"
维保
周期"
)
private
Short
maintenanceCycle
;
private
Short
maintenanceCycle
;
@ApiModelProperty
(
value
=
"检查周期(天)"
)
@ApiModelProperty
(
value
=
"检查周期(天)"
)
private
Short
checkCycle
;
private
Short
checkCycle
;
@ApiModelProperty
(
value
=
"报废期限"
)
private
Short
expiryDate
;
private
String
remark
;
private
String
remark
;
@ApiModelProperty
(
value
=
"管理方式 单件还是批量管理模式,单件S,批量:P"
)
@ApiModelProperty
(
value
=
"管理方式 单件还是批量管理模式,单件S,批量:P"
)
...
...
amos-boot-system-equip/src/main/resources/changelog/wl-3.6.0.xml
View file @
361da354
...
@@ -193,4 +193,27 @@
...
@@ -193,4 +193,27 @@
INSERT INTO `wl_form_group_column` (`id`, `field_name`, `field_label`, `data_type`, `group_id`, `query_strategy`, `not_null`, `group_code`, `creator_id`, `create_date`) VALUES ('133000000319', 'address', '地址', 'String', '132828674817', 'eq', b'0', 'r_fireControlRoom', '2581805', '2022-03-01 12:01:04');
INSERT INTO `wl_form_group_column` (`id`, `field_name`, `field_label`, `data_type`, `group_id`, `query_strategy`, `not_null`, `group_code`, `creator_id`, `create_date`) VALUES ('133000000319', 'address', '地址', 'String', '132828674817', 'eq', b'0', 'r_fireControlRoom', '2581805', '2022-03-01 12:01:04');
</sql>
</sql>
</changeSet>
</changeSet>
<changeSet
author=
"ltw"
id=
"202210111354-1"
>
<preConditions
onFail=
"MARK_RAN"
>
<not>
<columnExists
tableName=
"wl_equipment_specific"
columnName=
"warranty_info"
/>
</not>
</preConditions>
<comment>
新增字段 warranty_info,warranty_period
</comment>
<sql>
alter table `wl_equipment_specific` add column `warranty_info` varchar(500) DEFAULT NULL COMMENT '质保信息';
alter table `wl_equipment_specific` add column `warranty_period` datetime DEFAULT NULL COMMENT '质保周期';
</sql>
</changeSet>
<changeSet
author=
"ltw"
id=
"202210111354-2"
>
<preConditions
onFail=
"MARK_RAN"
>
<not>
<columnExists
tableName=
"wl_equipment"
columnName=
"expiry_date"
/>
</not>
</preConditions>
<comment>
新增字段 expiry_date 报废期限
</comment>
<sql>
alter table `wl_equipment` add column `expiry_date` decimal(12,0) DEFAULT NULL COMMENT '报废期限';
</sql>
</changeSet>
</databaseChangeLog>
</databaseChangeLog>
\ 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