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
c3d8dfb2
Commit
c3d8dfb2
authored
Apr 22, 2023
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改字段类型
parent
b7b9d184
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
PersonBasicDto.java
...eejoin/amos/boot/module/jxiop/api/dto/PersonBasicDto.java
+2
-2
PersonBasic.java
...eejoin/amos/boot/module/jxiop/api/entity/PersonBasic.java
+2
-2
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-api/src/main/java/com/yeejoin/amos/boot/module/jxiop/api/dto/PersonBasicDto.java
View file @
c3d8dfb2
...
...
@@ -26,13 +26,13 @@ public class PersonBasicDto extends BaseDto {
private
String
name
;
@ApiModelProperty
(
value
=
"性别( 0-男 1-女 )"
)
private
Integer
sex
;
private
String
sex
;
@ApiModelProperty
(
value
=
"工号"
)
private
String
jobNumber
;
@ApiModelProperty
(
value
=
"证件类型(0-身份证)"
)
private
Integer
idType
;
private
String
idType
;
@ApiModelProperty
(
value
=
"证件编号"
)
private
String
idNumber
;
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-api/src/main/java/com/yeejoin/amos/boot/module/jxiop/api/entity/PersonBasic.java
View file @
c3d8dfb2
...
...
@@ -33,7 +33,7 @@ public class PersonBasic extends BaseEntity {
* 性别( 0-男 1-女 )
*/
@TableField
(
"sex"
)
private
Integer
sex
;
private
String
sex
;
/**
* 工号
...
...
@@ -45,7 +45,7 @@ public class PersonBasic extends BaseEntity {
* 证件类型(0-身份证)
*/
@TableField
(
"ID_type"
)
private
Integer
idType
;
private
String
idType
;
/**
* 证件编号
...
...
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