| | |
| | | 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 = "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; |