package com.mes.opctask.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; import java.util.Date; /** * (LoadGlassDeviceTaskHistory)表实体类 * * @author makejava * @since 2024-11-06 22:23:00 */ @SuppressWarnings("serial") @Data public class LoadGlassDeviceTaskHistory { /** * 历史任务id */ @TableId(value = "id", type = IdType.AUTO) private Long id; /** * 任务请求 0无任务 1上片 */ private Integer taskRunning; /** * 原片宽 */ private Integer rawGlassWidth; /** * 原片高 */ private Integer rawGlassHeight; /** * 原片厚度 */ private Integer rawGlassThickness; /** * 原片膜系 */ private String rawGlassFilmsId; /** * 上片设备编号 */ private Integer station; /** * 上片位编号 */ private Integer slot; /** * 任务状态 0默认空任务 1执行中 2结束任务 */ private Integer taskState; /** * 创建时间 */ private Date createTime; /** * 更新时间 */ private Date updateTime; /** * 上片总数量 */ private Integer totalCount; /** * 已完成数量 */ private Integer finishCount; /** * 破损数量 */ private Integer damageCount; }