package com.mes.md.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import java.io.Serializable;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* <p>
|
* 小片表 (主体北玻)
|
* </p>
|
*
|
* @author wu
|
* @since 2024-08-28
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class GlassInfo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 玻璃小片表主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 批次号
|
*/
|
private String batchNumber;
|
|
/**
|
* 扫码ID (唯一)【板件ID】
|
*/
|
private String scanId;
|
|
/**
|
* 程序ID
|
*/
|
private String programId;
|
|
/**
|
* 任务类型【定制/标准】
|
*/
|
private String taskType;
|
|
/**
|
* 任务顺序
|
*/
|
private Integer taskSequence;
|
|
/**
|
* 任务数量
|
*/
|
private Integer taskQuantity;
|
|
/**
|
* 长
|
*/
|
private Double length;
|
|
/**
|
* 宽
|
*/
|
private Double width;
|
|
/**
|
* 厚
|
*/
|
private Double thickness;
|
|
/**
|
* 点胶图纸
|
*/
|
private String drawingGlue;
|
|
/**
|
* 打标图纸
|
*/
|
private String drawingMarking;
|
|
/**
|
* 丝印X
|
*/
|
private Double silkScreenX;
|
|
/**
|
* 丝印Y
|
*/
|
private Double silkScreenY;
|
|
/**
|
* 是否打标
|
*/
|
private Integer isMarking;
|
|
/**
|
* 是否丝印
|
*/
|
private Integer isSilkScreen;
|
|
|
}
|