AttendanceMessageSetVo.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package com.xjrsoft.module.attendance.vo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.util.List;
  5. /**
  6. * @title: 考勤消息设置表单出参
  7. * @Author dzx
  8. * @Date: 2024-05-21
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class AttendanceMessageSetVo {
  13. /**
  14. *
  15. */
  16. @ApiModelProperty("")
  17. private Long id;
  18. /**
  19. *
  20. */
  21. @ApiModelProperty("")
  22. private Integer sortCode;
  23. /**
  24. * 人员类别(1:教职工 2:学生)
  25. */
  26. @ApiModelProperty("人员类别(1:教职工 2:学生)")
  27. private Integer roleType;
  28. /**
  29. * 消息类别(1:迟到消息 2:旷课消息 3:缺勤消息)
  30. */
  31. @ApiModelProperty("消息类别(1:迟到消息 2:旷课消息 3:缺勤消息)")
  32. private Integer messageCategory;
  33. /**
  34. * 时间段(1:上午 2:下午 3:晚上 4:返校)
  35. */
  36. @ApiModelProperty("时间段(1:上午 2:下午 3:晚上 4:返校)")
  37. private String timePeriod;
  38. /**
  39. * 指定人员
  40. */
  41. @ApiModelProperty("指定人员")
  42. private String userRelation;
  43. /**
  44. * attendanceMessageUserRelation
  45. */
  46. @ApiModelProperty("attendanceMessageUserRelation子表")
  47. private List<AttendanceMessageUserRelationVo> attendanceMessageUserRelationList;
  48. }