RuleNum.java
1.05 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
package com.ruoyi.num.domain;
import lombok.Data;
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;
import java.util.Date;
/**
* 班次管理对象 rule_num
*
* @author guzijian
* @date 2023-08-03
*/
@Data
public class RuleNum extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** id */
private Long id;
/** 班型名称 */
@Excel(name = "班型名称")
private String ruleDictName;
/** 班次类型 */
@Excel(name = "班次类型")
private Integer ruleType;
/** 工作天数 */
@Excel(name = "工作天数")
private Integer workDay;
/** 休息天数 */
@Excel(name = "休息天数")
private Integer freeDay;
/** 星期翻班详情 */
@Excel(name = "星期翻班详情")
private String ruleWeek;
private Date createTime;
private Date updateTime;
private String createBy;
private String updateBy;
}