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 AggregateOutput { private Long time; private Long preTime; private Long workstationId; private Long output; private Long curOutput; private Long preOutput; 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 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 AggregateOutput; } public String toString() { return ToStringBuilder.reflectionToString(this); } public AggregateOutput() { } public Long getTime() { return time; } public void setTime(Long time) { this.time = time; } public Long getPreTime() { return preTime; } public void setPreTime(Long preTime) { this.preTime = preTime; } public Long getWorkstationId() { return this.workstationId; } public Long getOutput() { return output; } public void setOutput(Long output) { this.output = output; } public Long getCurOutput() { return curOutput; } public void setCurOutput(Long curOutput) { this.curOutput = curOutput; } public Long getPreOutput() { return preOutput; } public void setPreOutput(Long preOutput) { this.preOutput = preOutput; } 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; } }