package jnpf.model.leaveapply; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; /** * 请假申请 * * @author JNPF开发平台组 * @version V3.1.0 * @copyright 引迈信息技术有限公司 * @date 2021/3/15 8:46 */ @Data public class LeaveApplyInfoVO { @Schema(description = "主键id") private String id; @Schema(description = "相关附件") private String fileJson; @Schema(description = "紧急程度") private Integer flowUrgent; @Schema(description = "请假天数") private String leaveDayCount; @Schema(description = "请假小时") private String leaveHour; @Schema(description = "请假时间") private Long leaveStartTime; @Schema(description = "申请职位") private String applyPost; @Schema(description = "申请人员") private String applyUser; @Schema(description = "流程标题") private String flowTitle; @Schema(description = "申请部门") private String applyDept; @Schema(description = "请假类别") private String leaveType; @Schema(description = "请假原因") private String leaveReason; @Schema(description = "申请日期") private Long applyDate; @Schema(description = "流程主键") private String flowId; @Schema(description = "流程单据") private String billNo; @Schema(description = "结束时间") private Long leaveEndTime; }