Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 883a65a7
authored
Oct 19, 2023
by
刘鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DOC: 技术员(工程师)基本信息字段描述添加
1 parent
a2141fda
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
project-order/src/main/java/com/dituhui/pea/order/dto/param/EngineerParamDTO.java
project-order/src/main/java/com/dituhui/pea/order/dto/param/EngineerParamDTO.java
View file @
883a65a
...
...
@@ -61,6 +61,9 @@ public class EngineerParamDTO {
*/
private
String
phone
;
/**
* 类型(1全职 2兼职)
*/
private
int
kind
;
/**
...
...
@@ -68,26 +71,56 @@ public class EngineerParamDTO {
*/
private
Location
location
;
/**
* 出生年份
*/
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
private
Date
birth
;
/**
* 性别
*/
private
String
gender
;
/**
* 技能组
*/
private
List
<
String
>
skills
;
/**
* 职级,c2,c1...
*/
private
String
grade
;
/**
* 证书,如:低压电工证、燃气证
*/
private
List
<
String
>
credentials
;
/**
* 交通工具:1汽车;2电动车;3自行车;4步行 默认是汽车
*/
private
int
vehicle
;
/**
* 帐号状态(0无效 1有效)
*/
private
String
status
;
/**
* 地址
*/
private
String
address
;
/**
* 摩托车、汽车的车牌号,便于计算限行
*/
private
String
vehicleNo
;
/**
* 备注
*/
private
String
memo
;
}
}
Write
Preview
Markdown
is supported
Attach a file
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 post a comment