liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package com.dingzhuo.energy.basic.data.workforce.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.dingzhuo.energy.framework.aspectj.lang.annotation.Excel;
import com.dingzhuo.energy.framework.web.domain.BaseEntity;
import java.util.Date;
 
/**
 * 轮值方案对象 rostering_scheme
 * 
 * @author sys
 * @date 2020-05-12
 */
public class RosteringScheme extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    private String id;
 
    /** 编码 */
    @Excel(name = "编码")
    private String code;
 
    /** 名称 */
    @Excel(name = "名称")
    private String name;
 
    /** 组织结构Id */
    @Excel(name = "组织结构Id")
    private Long departMemberId;
    private String departMember;
    /** 轮值方案类型 */
    @Excel(name = "轮值方案类型")
    private String rosteringschemekind;
 
    /** 参照日期 */
    @Excel(name = "参照日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date referencedate;
 
    /** 是否自动排班 */
    @Excel(name = "是否自动排班")
    private String isautorostering;
 
    /** 描述 */
    @Excel(name = "描述")
    private String description;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setCode(String code) 
    {
        this.code = code;
    }
 
    public String getCode() 
    {
        return code;
    }
    public void setName(String name) 
    {
        this.name = name;
    }
 
    public String getName() 
    {
        return name;
    }
    public void setRosteringschemekind(String rosteringschemekind) 
    {
        this.rosteringschemekind = rosteringschemekind;
    }
 
    public String getRosteringschemekind() 
    {
        return rosteringschemekind;
    }
    public void setReferencedate(Date referencedate) 
    {
        this.referencedate = referencedate;
    }
 
    public Date getReferencedate() 
    {
        return referencedate;
    }
    public void setIsautorostering(String isautorostering)
    {
        this.isautorostering = isautorostering;
    }
 
    public String getIsautorostering()
    {
        return isautorostering;
    }
    public void setDescription(String description) 
    {
        this.description = description;
    }
 
    public String getDescription() 
    {
        return description;
    }
 
    public Long getDepartMemberId() {
        return departMemberId;
    }
 
    public void setDepartMemberId(Long departMemberId) {
        this.departMemberId = departMemberId;
    }
 
    public String getDepartMember() {
        return departMember;
    }
 
    public void setDepartMember(String departMember) {
        this.departMember = departMember;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("code", getCode())
            .append("name", getName())
            .append("departMemberId", getDepartMemberId())
            .append("rosteringschemekind", getRosteringschemekind())
            .append("referencedate", getReferencedate())
            .append("isautorostering", getIsautorostering())
            .append("description", getDescription())
            .toString();
    }
}