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;
|
}
|
|
|
|
}
|