Commit 883a65a7 by 刘鑫

DOC: 技术员(工程师)基本信息字段描述添加

1 parent a2141fda
......@@ -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;
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!