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
5b92d425
Commit
5b92d425
authored
Apr 22, 2023
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加冗余字段
parent
63c5361b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
PersonAscriptionDto.java
...n/amos/boot/module/jxiop/api/dto/PersonAscriptionDto.java
+2
-0
PersonAscription.java
...n/amos/boot/module/jxiop/api/entity/PersonAscription.java
+6
-0
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-api/src/main/java/com/yeejoin/amos/boot/module/jxiop/api/dto/PersonAscriptionDto.java
View file @
5b92d425
...
@@ -29,8 +29,10 @@ public class PersonAscriptionDto extends BaseDto {
...
@@ -29,8 +29,10 @@ public class PersonAscriptionDto extends BaseDto {
@ApiModelProperty
(
value
=
"所在项目id"
)
@ApiModelProperty
(
value
=
"所在项目id"
)
private
Long
projectId
;
private
Long
projectId
;
private
String
projectName
;
@ApiModelProperty
(
value
=
"部门id"
)
@ApiModelProperty
(
value
=
"部门id"
)
private
Long
departmentId
;
private
Long
departmentId
;
private
String
departmentName
;
@ApiModelProperty
(
value
=
"工作所在地key"
)
@ApiModelProperty
(
value
=
"工作所在地key"
)
private
String
workPlaceKey
;
private
String
workPlaceKey
;
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-api/src/main/java/com/yeejoin/amos/boot/module/jxiop/api/entity/PersonAscription.java
View file @
5b92d425
...
@@ -41,11 +41,17 @@ public class PersonAscription extends BaseEntity {
...
@@ -41,11 +41,17 @@ public class PersonAscription extends BaseEntity {
@TableField
(
"project_id"
)
@TableField
(
"project_id"
)
private
Long
projectId
;
private
Long
projectId
;
@TableField
(
"project_name"
)
private
String
projectName
;
/**
/**
* 部门班组
* 部门班组
*/
*/
@TableField
(
"department_id"
)
@TableField
(
"department_id"
)
private
Long
departmentId
;
private
Long
departmentId
;
@TableField
(
"department_name"
)
private
String
departmentName
;
/**
/**
* 工作所在地key
* 工作所在地key
...
...
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