yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.qianwen.smartman.modules.mdc.vo;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/DateInfo.class */
public class DateInfo {
    private String code;
    private String title;
    private String date;
    private Integer week;
    private Integer month;
    private Integer year;
    private Integer shiftIndex;
 
    public void setCode(final String code) {
        this.code = code;
    }
 
    public void setTitle(final String title) {
        this.title = title;
    }
 
    public void setDate(final String date) {
        this.date = date;
    }
 
    public void setWeek(final Integer week) {
        this.week = week;
    }
 
    public void setMonth(final Integer month) {
        this.month = month;
    }
 
    public void setYear(final Integer year) {
        this.year = year;
    }
 
    public void setShiftIndex(final Integer shiftIndex) {
        this.shiftIndex = shiftIndex;
    }
 
    public DateInfo(final String code, final String title, final String date, final Integer week, final Integer month, final Integer year, final Integer shiftIndex) {
        this.code = code;
        this.title = title;
        this.date = date;
        this.week = week;
        this.month = month;
        this.year = year;
        this.shiftIndex = shiftIndex;
    }
 
    public DateInfo() {
    }
 
    public String getCode() {
        return this.code;
    }
 
    public String getTitle() {
        return this.title;
    }
 
    public String getDate() {
        return this.date;
    }
 
    public Integer getWeek() {
        return this.week;
    }
 
    public Integer getMonth() {
        return this.month;
    }
 
    public Integer getYear() {
        return this.year;
    }
 
    public Integer getShiftIndex() {
        return this.shiftIndex;
    }
 
    public DateInfo(String code, String title, String date, Integer week, Integer month, Integer year) {
        this(code, title, date, week, month, year, -1);
    }
}