liyong
9 天以前 88e384da863bb2f7324cb1e1474885df3b7cce91
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
package cn.iocoder.yudao.module.hrm.dal.dataobject.attendance;
 
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
 
import java.time.LocalDate;
 
/**
 * 考勤节假日配置 DO
 *
 * @author 芋道源码
 */
@TableName("hrm_attendance_holiday")
@KeySequence("hrm_attendance_holiday_seq")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class HrmAttendanceHolidayDO extends BaseDO {
 
    /**
     * 节假日ID
     */
    @TableId
    private Long id;
 
    /**
     * 节假日名称
     */
    private String name;
 
    /**
     * 日期
     */
    private LocalDate date;
 
    /**
     * 类型:1-休息日,2-工作日
     *
     * 枚举 {@link cn.iocoder.yudao.module.hrm.enums.HrmAttendanceHolidayTypeEnum}
     */
    private Integer type;
 
    /**
     * 是否法定节假日:0-否,1-是
     */
    private Integer isLegal;
 
    /**
     * 备注
     */
    private String remark;
 
}