LeaveApplyForm.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 LeaveApplyForm {
  14. @Schema(description = "相关附件")
  15. private String fileJson;
  16. @Schema(description = "紧急程度")
  17. private Integer flowUrgent;
  18. @Schema(description = "请假天数")
  19. private String leaveDayCount;
  20. @Schema(description = "请假小时")
  21. private String leaveHour;
  22. @Schema(description = "请假时间")
  23. private Long leaveStartTime;
  24. @Schema(description = "申请职位")
  25. private String applyPost;
  26. @Schema(description = "申请人员")
  27. private String applyUser;
  28. @Schema(description = "流程标题")
  29. private String flowTitle;
  30. @Schema(description = "申请部门")
  31. private String applyDept;
  32. @Schema(description = "请假类别")
  33. private String leaveType;
  34. @Schema(description = "请假原因")
  35. private String leaveReason;
  36. @Schema(description = "申请日期")
  37. private Long applyDate;
  38. @Schema(description = "流程主键")
  39. private String flowId;
  40. @Schema(description = "流程单据")
  41. private String billNo;
  42. @Schema(description = "结束时间")
  43. private Long leaveEndTime;
  44. @Schema(description = "提交/保存 0-1")
  45. private String status;
  46. }