You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
457 B

6 days ago
  1. package com.chenhai.chenhaiai.entity;
  2. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  3. import lombok.Data;
  4. import java.time.LocalDate;
  5. /**
  6. * @author : mazhongxu
  7. * @date : 2025-12-04 19:40
  8. * @modyified By :
  9. */
  10. @Data
  11. @JsonIgnoreProperties(ignoreUnknown = true)
  12. public class WeekPlanMain {
  13. private Long id;
  14. private String deptName;
  15. private String weekDisplay;
  16. private String weekStartDate;
  17. private String weekEndDate;
  18. }