zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
package com.shlanbao.tzsc.pms.sch.calendar.beans;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
 
/**
 * 排班
 * @author Leejean
 * @create 2014年11月18日下午4:21:29
 */
public class CalendarBean {
    private String id;
    private String team;
    private String shift;
    private String workshop;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private String date;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String stim;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String etim;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getTeam() {
        return team;
    }
    public void setTeam(String team) {
        this.team = team;
    }
    public String getShift() {
        return shift;
    }
    public void setShift(String shift) {
        this.shift = shift;
    }
    public String getWorkshop() {
        return workshop;
    }
    public void setWorkshop(String workshop) {
        this.workshop = workshop;
    }
    public String getDate() {
        return date;
    }
    public void setDate(String date) {
        this.date = date;
    }
    public String getStim() {
        return stim;
    }
    public void setStim(String stim) {
        this.stim = stim;
    }
    public String getEtim() {
        return etim;
    }
    public void setEtim(String etim) {
        this.etim = etim;
    }
    
}