AttendanceMessageSetPageVo.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package com.xjrsoft.module.attendance.vo;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import com.xjrsoft.common.annotation.Trans;
  6. import com.xjrsoft.common.enums.TransType;
  7. import java.time.LocalTime;
  8. import java.time.LocalDateTime;
  9. import java.math.BigDecimal;
  10. import java.util.Date;
  11. /**
  12. * @title: 考勤消息设置分页列表出参
  13. * @Author dzx
  14. * @Date: 2024-05-20
  15. * @Version 1.0
  16. */
  17. @Data
  18. public class AttendanceMessageSetPageVo {
  19. /**
  20. *
  21. */
  22. @ApiModelProperty("")
  23. private String id;
  24. /**
  25. *
  26. */
  27. @ApiModelProperty("")
  28. private Long createUserId;
  29. /**
  30. *
  31. */
  32. @ApiModelProperty("")
  33. private Date createDate;
  34. /**
  35. *
  36. */
  37. @ApiModelProperty("")
  38. private Long modifyUserId;
  39. /**
  40. *
  41. */
  42. @ApiModelProperty("")
  43. private Date modifyDate;
  44. /**
  45. *
  46. */
  47. @ApiModelProperty("")
  48. private Integer deleteMark;
  49. /**
  50. *
  51. */
  52. @ApiModelProperty("")
  53. private Integer enabledMark;
  54. /**
  55. *
  56. */
  57. @ApiModelProperty("")
  58. private Integer sortCode;
  59. /**
  60. * 消息类别(1:迟到消息 2:旷课消息 3:缺勤消息)
  61. */
  62. @ApiModelProperty("消息类别(1:迟到消息 2:旷课消息 3:缺勤消息)")
  63. private Integer messageCategory;
  64. /**
  65. * 时间段(1:上午 2:下午 3:晚上 4:返校)
  66. */
  67. @ApiModelProperty("时间段(1:上午 2:下午 3:晚上 4:返校)")
  68. private Integer timePeriod;
  69. /**
  70. * 指定人员
  71. */
  72. @ApiModelProperty("指定人员")
  73. private String userRelation;
  74. }