package com.qianwen.mdc.collect.entity.iotdb; import org.apache.commons.lang3.builder.ToStringBuilder; import com.baomidou.mybatisplus.annotation.TableName; /** * 产量 */ //@TableName("root.f2.output*") public class Output { private Long time; private Long workstationId; private Long valueCollect; private Integer paramType; private String calendarCode; private Integer factoryYear; private Integer factoryMonth; private Integer factoryWeek; private Integer factoryDate; private Integer shiftIndex; private Integer shiftTimeType; private Boolean isSync; private Long employeeId; public void setWorkstationId(final Long workstationId) { this.workstationId = workstationId; } public void setValueCollect(final Long valueCollect) { this.valueCollect = valueCollect; } public void setParamType(final Integer paramType) { this.paramType = paramType; } public void setCalendarCode(final String calendarCode) { this.calendarCode = calendarCode; } public void setFactoryYear(final Integer factoryYear) { this.factoryYear = factoryYear; } public void setFactoryMonth(final Integer factoryMonth) { this.factoryMonth = factoryMonth; } public void setFactoryWeek(final Integer factoryWeek) { this.factoryWeek = factoryWeek; } public void setFactoryDate(final Integer factoryDate) { this.factoryDate = factoryDate; } public void setShiftIndex(final Integer shiftIndex) { this.shiftIndex = shiftIndex; } public void setShiftTimeType(final Integer shiftTimeType) { this.shiftTimeType = shiftTimeType; } public void setIsSync(final Boolean isSync) { this.isSync = isSync; } public void setEmployeeId(final Long employeeId) { this.employeeId = employeeId; } protected boolean canEqual(final Object other) { return other instanceof Output; } public String toString() { return ToStringBuilder.reflectionToString(this); } public Output(long time,final Long workstationId, final Long valueCollect, final Integer paramType, final String calendarCode, final Integer factoryYear, final Integer factoryMonth, final Integer factoryWeek, final Integer factoryDate, final Integer shiftIndex, final Integer shiftTimeType,final Boolean isSync, final Long employeeId) { this.time = time; this.workstationId = workstationId; this.valueCollect = valueCollect; this.paramType = paramType; this.calendarCode = calendarCode; this.factoryYear = factoryYear; this.factoryMonth = factoryMonth; this.factoryWeek = factoryWeek; this.factoryDate = factoryDate; this.shiftIndex = shiftIndex; this.shiftTimeType = shiftTimeType; this.isSync = isSync; this.employeeId = employeeId; } public Output() { } public Long getTime() { return time; } public void setTime(Long time) { this.time = time; } public Long getWorkstationId() { return this.workstationId; } public Long getValueCollect() { return this.valueCollect; } public Integer getParamType() { return this.paramType; } public String getCalendarCode() { return this.calendarCode; } public Integer getFactoryYear() { return this.factoryYear; } public Integer getFactoryMonth() { return this.factoryMonth; } public Integer getFactoryWeek() { return this.factoryWeek; } public Integer getFactoryDate() { return this.factoryDate; } public Integer getShiftIndex() { return this.shiftIndex; } public Integer getShiftTimeType() { return this.shiftTimeType; } public Boolean getIsSync() { return this.isSync; } public Long getEmployeeId() { return this.employeeId; } }