package com.mes.md.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.models.auth.In;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 原始任务表
|
* </p>
|
*
|
* @author wu
|
* @since 2024-08-28
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName(value = "KBB_T_JPDrawing_BP")
|
public class KBBTJPDrawingBP 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;
|
|
/**
|
* 报工数量
|
*/
|
private Integer reportCount;
|
|
/**
|
* R角1-1(右下角)
|
*/
|
private Double r_1_1;
|
|
/**
|
* R角1-2(右下角)
|
*/
|
private Double r_1_2;
|
|
/**
|
* R角2-1(右上角)
|
*/
|
private Double r_2_1;
|
|
/**
|
* R角2-2(右上角)
|
*/
|
private Double r_2_2;
|
|
/**
|
* R角3-1(左上角)
|
*/
|
private Double r_3_1;
|
|
/**
|
* R角3-2(左上角)
|
*/
|
private Double r_3_2;
|
|
/**
|
* R角4-1(左下角)
|
*/
|
private Double r_4_1;
|
|
/**
|
* R角4-2(左下角)
|
*/
|
private Double r_4_2;
|
|
/**
|
* 是否领取
|
*/
|
private Integer isWorking;
|
|
/**
|
* 创建时间
|
*/
|
@TableField(value = "CreateDate")
|
private Date createDate;
|
//
|
// @TableField(value = "report_line")
|
// private int reportLine;
|
|
|
}
|