1
zhujie
5 天以前 ec15861e14c66c38b1a8f5fffc6975d7da6c315c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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;
 
 
}