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
0b9995e5
Commit
0b9995e5
authored
Dec 23, 2021
by
helinlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
1cd43584
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
ContractDto.java
.../yeejoin/amos/boot/module/common/api/dto/ContractDto.java
+1
-1
Contract.java
.../yeejoin/amos/boot/module/common/api/entity/Contract.java
+1
-1
jcs-1.0.0.0.xml
...ystem-jcs/src/main/resources/db/changelog/jcs-1.0.0.0.xml
+9
-0
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/ContractDto.java
View file @
0b9995e5
...
...
@@ -46,7 +46,7 @@ public class ContractDto extends BaseDto {
private
String
contractNo
;
@ApiModelProperty
(
value
=
"机构代码用于权限过滤"
)
private
Boolean
orgCode
;
private
String
orgCode
;
@ApiModelProperty
(
value
=
"单位名称"
)
private
String
company
;
...
...
amos-boot-module/amos-boot-module-api/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/entity/Contract.java
View file @
0b9995e5
...
...
@@ -61,7 +61,7 @@ public class Contract extends BaseEntity {
* 机构代码用于权限过滤
*/
@TableField
(
"org_code"
)
private
Boolean
orgCode
;
private
String
orgCode
;
/**
* 单位名称
*/
...
...
amos-boot-system-jcs/src/main/resources/db/changelog/jcs-1.0.0.0.xml
View file @
0b9995e5
...
...
@@ -2389,5 +2389,14 @@
</sql>
</changeSet>
<changeSet
author=
"helinlin"
id=
"2021-12-23-11-06"
>
<preConditions
onFail=
"MARK_RAN"
>
<tableExists
tableName=
"cb_contract"
/>
</preConditions>
<comment>
change org_code filed type
</comment>
<sql>
ALTER TABLE `cb_contract` MODIFY COLUMN org_code VARCHAR(10) DEFAULT NULL COMMENT '机构代码用于权限过滤';
</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