package com.mes.pp.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import java.time.LocalDateTime;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import java.io.Serializable;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author wu
|
* @since 2024-08-07
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class FlowCard implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* (工程号,2024.0302天机)
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 销售单号
|
*/
|
private String orderId;
|
|
/**
|
* 生产订单号
|
*/
|
private String productionId;
|
|
/**
|
* 流程卡号
|
*/
|
private String processId;
|
|
/**
|
* 落架顺序
|
*/
|
private String landingSequence;
|
|
/**
|
* 序号
|
*/
|
private Integer orderNumber;
|
|
/**
|
* 工艺确认序号
|
*/
|
private Integer technologyNumber;
|
|
/**
|
* 分架数量
|
*/
|
private Integer quantity;
|
|
/**
|
* 以优化数量
|
*/
|
private Integer optimizeQuantity;
|
|
/**
|
* 排版状态(默认0,1允许排版2优化占用)
|
*/
|
private Integer layoutStatus;
|
|
/**
|
* 补片数量
|
*/
|
private Integer numberPatches;
|
|
/**
|
* 最后工序报工 库存数量
|
*/
|
private Integer inventoryQuantity;
|
|
/**
|
* 已入数量
|
*/
|
private Integer receivedQuantity;
|
|
/**
|
* 补片编号
|
*/
|
private String patchId;
|
|
/**
|
* 工程占用状态,0为占用1占用
|
*/
|
private Integer engineeringOccupancy;
|
|
/**
|
* 工程号(2024.0302添加)
|
*/
|
private String projectNo;
|
|
/**
|
* 包装前工序报工 库存数量
|
*/
|
private Integer inventoryNumber;
|
|
/**
|
* 入库时间
|
*/
|
private LocalDateTime storageTime;
|
|
/**
|
* 生产终止状态(默认0,1生产终止)
|
*/
|
private Integer terminationStatus;
|
|
/**
|
* 打印状态
|
*/
|
private Integer printStatus;
|
|
/**
|
* 备用键
|
*/
|
private Integer alternateKey;
|
|
/**
|
* 分架员
|
*/
|
private String founder;
|
|
/**
|
* 分架时间
|
*/
|
@TableField("splitFrame_time")
|
private LocalDateTime splitframeTime;
|
|
/**
|
* 层数
|
*/
|
private Integer layersNumber;
|
|
/**
|
* 流程卡打印排序
|
*/
|
private Integer sort;
|
|
/**
|
* 建立时间
|
*/
|
private LocalDateTime createTime;
|
|
/**
|
* 修改时间
|
*/
|
private LocalDateTime updateTime;
|
|
|
}
|