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
21 lines
457 B
package com.chenhai.chenhaiai.entity;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
import lombok.Data;
|
|
|
|
import java.time.LocalDate;
|
|
|
|
/**
|
|
* @author : mazhongxu
|
|
* @date : 2025-12-04 19:40
|
|
* @modyified By :
|
|
*/
|
|
@Data
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
public class WeekPlanMain {
|
|
private Long id;
|
|
private String deptName;
|
|
private String weekDisplay;
|
|
private String weekStartDate;
|
|
private String weekEndDate;
|
|
}
|