RuleNumScheduling.java
1.75 KB
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
package com.ruoyi.schedulingAssociateNum.domain;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
/**
* 排班规则和班次关联对象 rule_num_scheduling
*
* @author 古自健
* @date 2023-08-07
*/
public class RuleNumScheduling extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键 */
private Long id;
/** 班次id */
@Excel(name = "班次id")
private Long ruleNumId;
/** 规则id集合 */
@Excel(name = "规则id集合")
private String ruleSchedulingId;
/** 排班名称 */
@Excel(name = "排班名称")
private String matchName;
public void setId(Long id)
{
this.id = id;
}
public Long getId()
{
return id;
}
public void setRuleNumId(Long ruleNumId)
{
this.ruleNumId = ruleNumId;
}
public Long getRuleNumId()
{
return ruleNumId;
}
public void setRuleSchedulingId(String ruleSchedulingId)
{
this.ruleSchedulingId = ruleSchedulingId;
}
public String getRuleSchedulingId()
{
return ruleSchedulingId;
}
public void setMatchName(String matchName)
{
this.matchName = matchName;
}
public String getMatchName()
{
return matchName;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("ruleNumId", getRuleNumId())
.append("ruleSchedulingId", getRuleSchedulingId())
.append("matchName", getMatchName())
.toString();
}
}