LeaveApplyInfoVO.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package jnpf.model.leaveapply;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * 请假申请
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.1.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2021/3/15 8:46
  11. */
  12. @Data
  13. public class LeaveApplyInfoVO {
  14. @Schema(description = "主键id")
  15. private String id;
  16. @Schema(description = "相关附件")
  17. private String fileJson;
  18. @Schema(description = "紧急程度")
  19. private Integer flowUrgent;
  20. @Schema(description = "请假天数")
  21. private String leaveDayCount;
  22. @Schema(description = "请假小时")
  23. private String leaveHour;
  24. @Schema(description = "请假时间")
  25. private Long leaveStartTime;
  26. @Schema(description = "申请职位")
  27. private String applyPost;
  28. @Schema(description = "申请人员")
  29. private String applyUser;
  30. @Schema(description = "流程标题")
  31. private String flowTitle;
  32. @Schema(description = "申请部门")
  33. private String applyDept;
  34. @Schema(description = "请假类别")
  35. private String leaveType;
  36. @Schema(description = "请假原因")
  37. private String leaveReason;
  38. @Schema(description = "申请日期")
  39. private Long applyDate;
  40. @Schema(description = "流程主键")
  41. private String flowId;
  42. @Schema(description = "流程单据")
  43. private String billNo;
  44. @Schema(description = "结束时间")
  45. private Long leaveEndTime;
  46. }