package com.mzl.flower.entity;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
import lombok.experimental.Accessors;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* @author @TaoJie
|
* @since 2024-09-12
|
*/
|
@Data
|
@Accessors(chain = true)
|
@TableName("t_calendar")
|
public class CalendarDO {
|
|
private String id;
|
|
|
/**
|
* 日期
|
*/
|
private LocalDateTime calDate;
|
|
/**
|
* 年
|
*/
|
private String calYear;
|
|
/**
|
* 月
|
*/
|
private String calMonth;
|
|
/**
|
* 日
|
*/
|
private String calDay;
|
|
/**
|
* 周(一/二/三/四/五/六/日)
|
*/
|
private String calWeek;
|
|
/**
|
* 无/休/班
|
*/
|
private Integer type;
|
|
|
private LocalDateTime createTime;
|
|
|
private LocalDateTime updateTime;
|
|
|
}
|