| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import cn.iocoder.yudao.module.system.api.storage.dto.StorageBlobRespDTO; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Schema(description = "管理后台 - 请假申请 Response VO") |
| | | @Data |
| | |
| | | @Schema(description = "审批状态名称", example = "草稿") |
| | | private String statusName; |
| | | |
| | | @Schema(description = "BPM 流程实例ID", example = "xxx") |
| | | private String processInstanceId; |
| | | @Schema(description = "审核人用户编号", example = "1") |
| | | private Long reviewerId; |
| | | |
| | | @Schema(description = "审核人姓名", example = "张三") |
| | | private String reviewerName; |
| | | |
| | | @Schema(description = "审核时间", example = "2024-01-01 10:00:00") |
| | | private LocalDateTime reviewTime; |
| | | |
| | | @Schema(description = "审核意见(审核通过时的意见 / 审核不通过时的原因)", example = "同意") |
| | | private String reviewRemark; |
| | | |
| | | @Schema(description = "审批完成时间", example = "2024-01-01 10:00:00") |
| | | private LocalDateTime approveTime; |
| | | |
| | | @Schema(description = "附件地址", example = "https://xxx.com/xxx.pdf") |
| | | private String fileUrl; |
| | | @Schema(description = "附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | @Schema(description = "备注", example = "备注信息") |
| | | private String remark; |