|
@@ -17,11 +17,11 @@ import java.util.List;
|
|
|
@ExcelIgnoreUnannotated
|
|
@ExcelIgnoreUnannotated
|
|
|
public class OaReceiveRespVO {
|
|
public class OaReceiveRespVO {
|
|
|
|
|
|
|
|
- @Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
|
|
|
|
|
+ @Schema(description = "主键")
|
|
|
@ExcelProperty("主键")
|
|
@ExcelProperty("主键")
|
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
|
|
- @Schema(description = "uuid", requiredMode = Schema.RequiredMode.REQUIRED, example = "28035")
|
|
|
|
|
|
|
+ @Schema(description = "uuid")
|
|
|
@ExcelProperty("uuid")
|
|
@ExcelProperty("uuid")
|
|
|
private String receiveUuid;
|
|
private String receiveUuid;
|
|
|
|
|
|
|
@@ -53,11 +53,11 @@ public class OaReceiveRespVO {
|
|
|
@ExcelProperty("员工职位")
|
|
@ExcelProperty("员工职位")
|
|
|
private String position;
|
|
private String position;
|
|
|
|
|
|
|
|
- @Schema(description = "领用日期", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
|
|
|
|
|
+ @Schema(description = "领用日期")
|
|
|
@ExcelProperty("领用日期")
|
|
@ExcelProperty("领用日期")
|
|
|
private String receiveDate;
|
|
private String receiveDate;
|
|
|
|
|
|
|
|
- @Schema(description = "领用原因", requiredMode = Schema.RequiredMode.REQUIRED, example = "不喜欢")
|
|
|
|
|
|
|
+ @Schema(description = "领用原因")
|
|
|
@ExcelProperty("领用原因")
|
|
@ExcelProperty("领用原因")
|
|
|
private String reason;
|
|
private String reason;
|
|
|
|
|
|
|
@@ -65,7 +65,7 @@ public class OaReceiveRespVO {
|
|
|
@ExcelProperty("流程实例id")
|
|
@ExcelProperty("流程实例id")
|
|
|
private String procInstId;
|
|
private String procInstId;
|
|
|
|
|
|
|
|
- @Schema(description = "审核状态(0暂存、1已提交、2审核中、3已审核、4已关闭、5已驳回)", example = "2")
|
|
|
|
|
|
|
+ @Schema(description = "审核状态(0暂存、1已提交、2审核中、3已审核、4已关闭、5已驳回)")
|
|
|
@ExcelProperty("审核状态(0暂存、1已提交、2审核中、3已审核、4已关闭、5已驳回)")
|
|
@ExcelProperty("审核状态(0暂存、1已提交、2审核中、3已审核、4已关闭、5已驳回)")
|
|
|
private String auditStatus;
|
|
private String auditStatus;
|
|
|
|
|
|
|
@@ -97,7 +97,7 @@ public class OaReceiveRespVO {
|
|
|
@ExcelProperty("数据来源,0流程添加、1手动添加")
|
|
@ExcelProperty("数据来源,0流程添加、1手动添加")
|
|
|
private String infoSource;
|
|
private String infoSource;
|
|
|
|
|
|
|
|
- @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
|
|
|
|
|
+ @Schema(description = "创建时间")
|
|
|
@ExcelProperty("创建时间")
|
|
@ExcelProperty("创建时间")
|
|
|
private LocalDateTime createTime;
|
|
private LocalDateTime createTime;
|
|
|
|
|
|