|
@@ -16,108 +16,90 @@ import com.alibaba.excel.annotation.*;
|
|
|
public class RelationsRenewRespVO {
|
|
|
|
|
|
@Schema(description = "续签表单主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "25101")
|
|
|
- @ExcelProperty("续签表单主键")
|
|
|
private Long id;
|
|
|
|
|
|
@Schema(description = "uuid", example = "14155")
|
|
|
- @ExcelProperty("uuid")
|
|
|
private String renewId;
|
|
|
|
|
|
@Schema(description = "续签人id", example = "18481")
|
|
|
- @ExcelProperty("续签人id")
|
|
|
private Long employeeId;
|
|
|
|
|
|
@Schema(description = "续签人uuid", example = "15219")
|
|
|
- @ExcelProperty("续签人uuid")
|
|
|
private String employeeUuid;
|
|
|
|
|
|
@Schema(description = "续签员工姓名", example = "李四")
|
|
|
- @ExcelProperty("续签员工姓名")
|
|
|
+ @ExcelProperty("续签人")
|
|
|
private String employeeName;
|
|
|
|
|
|
+ @Schema(description = "部门名称", example = "人事部")
|
|
|
+ @ExcelProperty("部门")
|
|
|
+ private String deptName;
|
|
|
+
|
|
|
+ @Schema(description = "职位")
|
|
|
+ @ExcelProperty("职位")
|
|
|
+ private String position;
|
|
|
+
|
|
|
@Schema(description = "续签员工手机号")
|
|
|
- @ExcelProperty("续签员工手机号")
|
|
|
+ @ExcelProperty("手机号")
|
|
|
private String employeePhone;
|
|
|
|
|
|
+ @Schema(description = "续签开始日期")
|
|
|
+ @ExcelProperty("续签开始日期")
|
|
|
+ private String renewContractStartDate;
|
|
|
+
|
|
|
+ @Schema(description = "续签结束日期")
|
|
|
+ @ExcelProperty("续签结束日期")
|
|
|
+ private String renewContractEndDate;
|
|
|
+
|
|
|
+ @Schema(description = "创建人员工姓名", example = "李四")
|
|
|
+ @ExcelProperty("创建人员工姓名")
|
|
|
+ private String creatorEmployeeName;
|
|
|
+
|
|
|
+ @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
|
+ @ExcelProperty("创建时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private LocalDateTime createTime;
|
|
|
+
|
|
|
@Schema(description = "用户账号id", example = "12361")
|
|
|
- @ExcelProperty("用户账号id")
|
|
|
private Long userId;
|
|
|
|
|
|
@Schema(description = "用户账号uuid", example = "2148")
|
|
|
- @ExcelProperty("用户账号uuid")
|
|
|
private String userUuid;
|
|
|
|
|
|
@Schema(description = "部门id", example = "9504")
|
|
|
- @ExcelProperty("部门id")
|
|
|
private Long deptId;
|
|
|
|
|
|
@Schema(description = "部门uuid", example = "7043")
|
|
|
- @ExcelProperty("部门uuid")
|
|
|
private String deptUuid;
|
|
|
|
|
|
- @Schema(description = "部门名称", example = "人事部")
|
|
|
- @ExcelProperty("部门名称")
|
|
|
- private String deptName;
|
|
|
-
|
|
|
- @Schema(description = "职位")
|
|
|
- @ExcelProperty("职位")
|
|
|
- private String position;
|
|
|
-
|
|
|
@Schema(description = "原合同开始日期")
|
|
|
- @ExcelProperty("原合同开始日期")
|
|
|
private String oldContractStartDate;
|
|
|
|
|
|
@Schema(description = "原合同结束日期")
|
|
|
- @ExcelProperty("原合同结束日期")
|
|
|
private String oldContractEndDate;
|
|
|
|
|
|
@Schema(description = "续签合同期限")
|
|
|
- @ExcelProperty("续签合同期限")
|
|
|
private String renewPeriod;
|
|
|
|
|
|
- @Schema(description = "续签开始日期")
|
|
|
- @ExcelProperty("续签开始日期")
|
|
|
- private String renewContractStartDate;
|
|
|
-
|
|
|
- @Schema(description = "续签结束日期")
|
|
|
- @ExcelProperty("续签结束日期")
|
|
|
- private String renewContractEndDate;
|
|
|
-
|
|
|
@Schema(description = "续签理由", example = "不好")
|
|
|
- @ExcelProperty("续签理由")
|
|
|
private String renewReason;
|
|
|
|
|
|
@Schema(description = "工作表现")
|
|
|
- @ExcelProperty("工作表现")
|
|
|
private String workPerformance;
|
|
|
|
|
|
@Schema(description = "备注")
|
|
|
- @ExcelProperty("备注")
|
|
|
private String remarks;
|
|
|
|
|
|
@Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
|
- @ExcelProperty("状态")
|
|
|
private Integer status;
|
|
|
|
|
|
@Schema(description = "数据来源,0流程添加、1手动添加")
|
|
|
- @ExcelProperty("数据来源,0流程添加、1手动添加")
|
|
|
private String infoSource;
|
|
|
|
|
|
@Schema(description = "创建人员工id", example = "27141")
|
|
|
- @ExcelProperty("创建人员工id")
|
|
|
private Long creatorEmployeeId;
|
|
|
|
|
|
- @Schema(description = "创建人员工姓名", example = "李四")
|
|
|
- @ExcelProperty("创建人员工姓名")
|
|
|
- private String creatorEmployeeName;
|
|
|
-
|
|
|
- @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
|
- @ExcelProperty("创建时间")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- private LocalDateTime createTime;
|
|
|
-
|
|
|
@Schema(description = "租户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "618")
|
|
|
- @ExcelProperty("租户编号")
|
|
|
private Long tenantId;
|
|
|
|
|
|
@Schema(description = "附件列表")
|