Commit 5b92d425 authored by tangwei's avatar tangwei

增加冗余字段

parent 63c5361b
...@@ -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;
......
...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment