|
@@ -16,53 +16,45 @@ import com.alibaba.excel.annotation.*;
|
|
|
public class AttendanceLeaveRespVO {
|
|
|
|
|
|
@Schema(description = "请假表单主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "11893")
|
|
|
- @ExcelProperty("请假表单主键")
|
|
|
private Long id;
|
|
|
|
|
|
@Schema(description = "uuid", example = "9396")
|
|
|
- @ExcelProperty("uuid")
|
|
|
private String leaveId;
|
|
|
|
|
|
@Schema(description = "请假人id", example = "25553")
|
|
|
- @ExcelProperty("请假人id")
|
|
|
private Long employeeId;
|
|
|
|
|
|
@Schema(description = "请假人uuid", example = "9213")
|
|
|
- @ExcelProperty("请假人uuid")
|
|
|
private String employeeUuid;
|
|
|
|
|
|
@Schema(description = "请假员工姓名", example = "王五")
|
|
|
- @ExcelProperty("请假员工姓名")
|
|
|
+ @ExcelProperty("请假人")
|
|
|
private String employeeName;
|
|
|
|
|
|
- @Schema(description = "请假员工手机号")
|
|
|
- @ExcelProperty("请假员工手机号")
|
|
|
- private String employeePhone;
|
|
|
-
|
|
|
@Schema(description = "用户账号id", example = "20160")
|
|
|
- @ExcelProperty("用户账号id")
|
|
|
private Long userId;
|
|
|
|
|
|
@Schema(description = "用户账号uuid", example = "27340")
|
|
|
- @ExcelProperty("用户账号uuid")
|
|
|
private String userUuid;
|
|
|
|
|
|
@Schema(description = "部门id", example = "5849")
|
|
|
- @ExcelProperty("部门id")
|
|
|
private Long deptId;
|
|
|
|
|
|
@Schema(description = "部门uuid", example = "864")
|
|
|
- @ExcelProperty("部门uuid")
|
|
|
private String deptUuid;
|
|
|
|
|
|
@Schema(description = "部门名称", example = "财务部")
|
|
|
- @ExcelProperty("部门名称")
|
|
|
+ @ExcelProperty("部门")
|
|
|
private String deptName;
|
|
|
|
|
|
@Schema(description = "员工职位")
|
|
|
- @ExcelProperty("员工职位")
|
|
|
+ @ExcelProperty("职位")
|
|
|
private String position;
|
|
|
|
|
|
+ @Schema(description = "请假员工手机号")
|
|
|
+ @ExcelProperty("手机号")
|
|
|
+ private String employeePhone;
|
|
|
+
|
|
|
@Schema(description = "请假类型", example = "1")
|
|
|
@ExcelProperty("请假类型")
|
|
|
private String leaveType;
|
|
@@ -72,7 +64,6 @@ public class AttendanceLeaveRespVO {
|
|
|
private String startDate;
|
|
|
|
|
|
@Schema(description = "具体时间,精确到上下午,am上午 pm下午")
|
|
|
- @ExcelProperty("具体时间,精确到上下午,am上午 pm下午")
|
|
|
private String startTime;
|
|
|
|
|
|
@Schema(description = "结束日期")
|
|
@@ -80,7 +71,6 @@ public class AttendanceLeaveRespVO {
|
|
|
private String endDate;
|
|
|
|
|
|
@Schema(description = "具体时间,精确到上下午,am上午 pm下午")
|
|
|
- @ExcelProperty("具体时间,精确到上下午,am上午 pm下午")
|
|
|
private String endTime;
|
|
|
|
|
|
@Schema(description = "请假天数")
|
|
@@ -88,11 +78,9 @@ public class AttendanceLeaveRespVO {
|
|
|
private String day;
|
|
|
|
|
|
@Schema(description = "请假原因", example = "不香")
|
|
|
- @ExcelProperty("请假原因")
|
|
|
private String reason;
|
|
|
|
|
|
@Schema(description = "备注")
|
|
|
- @ExcelProperty("备注")
|
|
|
private String remarks;
|
|
|
|
|
|
@Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
@@ -100,15 +88,13 @@ public class AttendanceLeaveRespVO {
|
|
|
private Integer status;
|
|
|
|
|
|
@Schema(description = "数据来源,0流程添加、1手动添加")
|
|
|
- @ExcelProperty("数据来源,0流程添加、1手动添加")
|
|
|
private String infoSource;
|
|
|
|
|
|
@Schema(description = "创建人员工id", example = "22995")
|
|
|
- @ExcelProperty("创建人员工id")
|
|
|
private Long creatorEmployeeId;
|
|
|
|
|
|
@Schema(description = "创建人员工姓名", example = "张三")
|
|
|
- @ExcelProperty("创建人员工姓名")
|
|
|
+ @ExcelProperty("创建人")
|
|
|
private String creatorEmployeeName;
|
|
|
|
|
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
@@ -117,7 +103,6 @@ public class AttendanceLeaveRespVO {
|
|
|
private LocalDateTime createTime;
|
|
|
|
|
|
@Schema(description = "租户编号", example = "1")
|
|
|
- @ExcelProperty("租户编号")
|
|
|
private Long tenantId;
|
|
|
|
|
|
@Schema(description = "附件列表")
|