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
bb6bf195
Commit
bb6bf195
authored
Apr 22, 2023
by
高建强
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
处理上传图片未写入数据库问题
parent
96273a89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
PersonBasic.java
...eejoin/amos/boot/module/jxiop/api/entity/PersonBasic.java
+4
-3
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-api/src/main/java/com/yeejoin/amos/boot/module/jxiop/api/entity/PersonBasic.java
View file @
bb6bf195
...
...
@@ -9,6 +9,7 @@ import lombok.Data;
import
lombok.EqualsAndHashCode
;
import
lombok.experimental.Accessors
;
import
java.util.Date
;
import
java.util.List
;
/**
* 人员基本信息
...
...
@@ -130,19 +131,19 @@ public class PersonBasic extends BaseEntity {
* 人员头像
*/
@TableField
(
value
=
"head_photo"
,
typeHandler
=
FastjsonTypeHandler
.
class
)
private
String
headPhoto
;
private
List
<
CommonFile
>
headPhoto
;
/**
* 证件照片正面
*/
@TableField
(
value
=
"front_certificate_photo"
,
typeHandler
=
FastjsonTypeHandler
.
class
)
private
String
frontCertificatePhoto
;
private
List
<
CommonFile
>
frontCertificatePhoto
;
/**
* 证件照片反面
*/
@TableField
(
value
=
"back_certificate_photo"
,
typeHandler
=
FastjsonTypeHandler
.
class
)
private
String
backCertificatePhoto
;
private
List
<
CommonFile
>
backCertificatePhoto
;
/**
* 组织机构id
...
...
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