lius
2023-06-08 534aec7a687ceca8120ba798ad20d80d7058ffe6
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
package org.jeecg.modules.mdc.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecg.common.aspect.annotation.Dict;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.io.Serializable;
 
/**
 * @Description: 设备工作日历表
 * @Author: jeecg-boot
 * @Date: 2023-04-10
 * @Version: V1.0
 */
@Data
@TableName("mdc_device_calendar")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "mdc_device_calendar对象", description = "设备工作日历表")
public class MdcDeviceCalendar extends JeecgEntity implements Serializable {
 
    /**
     * 班制ID
     */
    @Excel(name = "班制ID", width = 15)
    @ApiModelProperty(value = "班制ID")
    private String shiftId;
    /**
     * 生效日期
     */
    @Excel(name = "生效日期", width = 15)
    @ApiModelProperty(value = "生效日期")
    private String effectiveDate;
    /**
     * 设备编号
     */
    @Excel(name = "设备编号", width = 15)
    @ApiModelProperty(value = "设备编号")
    private String equmentId;
 
    /**
     * 班次ID
     */
    @Excel(name = "班次ID", width = 15)
    @ApiModelProperty(value = "班次ID")
    private String shiftSubId;
    /**
     * 星期标识
     */
    @Excel(name = "星期标识", width = 15)
    @ApiModelProperty(value = "星期标识")
    @Dict(dicCode = "week_number_type")
    private String weekNumber;
}