Notice.java 388 B

123456789101112131415
  1. package com.supervision.web.noticeManage.entity;
  2. import lombok.Data;
  3. import java.time.LocalDateTime;
  4. @Data
  5. public class Notice {
  6. private Integer id;
  7. private String title;
  8. private String description;
  9. private String attachment; // 存放前端传过来的文件URL
  10. private LocalDateTime createTime;
  11. private LocalDateTime updateTime;
  12. private String fileType;
  13. }