ScheduleInfoVO.java 1.1 KB

1234567891011121314151617181920212223242526272829
  1. package jnpf.model.schedule;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. @Data
  5. public class ScheduleInfoVO {
  6. @Schema(description ="日程主键")
  7. private String id;
  8. @Schema(description ="开始时间(时间戳)")
  9. private long startTime;
  10. @Schema(description ="结束时间(时间戳)")
  11. private long endTime;
  12. @Schema(description ="日程内容")
  13. private String content;
  14. @Schema(description ="提醒设置",example = "1")
  15. private Integer early;
  16. @Schema(description ="APP提醒(1-提醒,0-不提醒)",example = "1")
  17. private Integer appAlert;
  18. @Schema(description ="日程颜色")
  19. private String colour;
  20. @Schema(description ="颜色样式")
  21. private String colourCss;
  22. @Schema(description ="微信提醒(1-提醒,0-不提醒)",example = "1")
  23. private Integer weChatAlert;
  24. @Schema(description ="邮件提醒(1-提醒,0-不提醒)",example = "1")
  25. private Integer mailAlert;
  26. @Schema(description ="短信提醒(1-提醒,0-不提醒)",example = "1")
  27. private Integer mobileAlert;
  28. }