AttendanceMessageSetPageVo.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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-21
  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:学生)
  61. */
  62. @ApiModelProperty("人员类别(1:教职工 2:学生)")
  63. private Integer roleType;
  64. /**
  65. * 消息类别(1:迟到消息 2:旷课消息 3:缺勤消息)
  66. */
  67. @ApiModelProperty("消息类别(1:迟到消息 2:旷课消息 3:缺勤消息)")
  68. private Integer messageCategory;
  69. /**
  70. * 时间段(1:上午 2:下午 3:晚上 4:返校)
  71. */
  72. @ApiModelProperty("时间段(1:上午 2:下午 3:晚上 4:返校)")
  73. private String timePeriod;
  74. /**
  75. * 指定人员
  76. */
  77. @ApiModelProperty("指定人员")
  78. private String userRelation;
  79. }