package com.mes.order.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author wu
|
* @since 2024-06-17
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class ProcessCardReport implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* <订单表>
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 订单Id
|
*/
|
private String orderId;
|
|
/**
|
* 流程卡号
|
*/
|
private String processId;
|
|
/**
|
* 订单序号
|
*/
|
private Integer orderNumber;
|
|
/**
|
* 层号
|
*/
|
private Integer technologyNumber;
|
|
/**
|
* 工艺
|
*/
|
private String process;
|
|
/**
|
* 累计报工数
|
*/
|
private Integer reportWorkNumCount;
|
|
/**
|
* 报工数
|
*/
|
private Integer reportWorkNum;
|
|
/**
|
* 破损数量
|
*/
|
private Integer brokenNum;
|
|
/**
|
* 创建时间
|
*/
|
private Data createTime;
|
|
/**
|
* 最后一次报工时间
|
*/
|
private Data updateTime;
|
|
/**
|
* 流程卡数量
|
*/
|
private Integer quantity;
|
|
/**
|
* 缺片数量
|
*/
|
private Integer lackQuantity;
|
}
|