yangys
2024-11-13 04d53749b21921c9bceebe120d170c2ee6e533af
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
package com.qianwen.mdc.collect.vo;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
import org.apache.commons.lang3.StringUtils;
 
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
 
import cn.hutool.core.util.ObjectUtil;
import io.swagger.annotations.ApiModelProperty;
 
 
/**
 * 工厂数据VO
 */
public class FactoryDataVO implements Serializable{
    
    /**
     * 序列化,应为需要spring缓存
     */
    private static final long serialVersionUID = 6558493027948435061L;
 
    private String calendarCode;
    private Integer factoryYear;
    private Integer factoryMonth;
    private Integer factoryWeek;
    private Integer factoryDate;
    private Integer shiftIndex;
    private Integer shiftTimeType;
    public String getCalendarCode() {
        return calendarCode;
    }
    public void setCalendarCode(String calendarCode) {
        this.calendarCode = calendarCode;
    }
    public Integer getFactoryYear() {
        return factoryYear;
    }
    public void setFactoryYear(Integer factoryYear) {
        this.factoryYear = factoryYear;
    }
    public Integer getFactoryMonth() {
        return factoryMonth;
    }
    public void setFactoryMonth(Integer factoryMonth) {
        this.factoryMonth = factoryMonth;
    }
    public Integer getFactoryWeek() {
        return factoryWeek;
    }
    public void setFactoryWeek(Integer factoryWeek) {
        this.factoryWeek = factoryWeek;
    }
    public Integer getFactoryDate() {
        return factoryDate;
    }
    public void setFactoryDate(Integer factoryDate) {
        this.factoryDate = factoryDate;
    }
    public Integer getShiftIndex() {
        return shiftIndex;
    }
    public void setShiftIndex(Integer shiftIndex) {
        this.shiftIndex = shiftIndex;
    }
    public Integer getShiftTimeType() {
        return shiftTimeType;
    }
    public void setShiftTimeType(Integer shiftTimeType) {
        this.shiftTimeType = shiftTimeType;
    }
 
    
    
}