package com.example.northglasserpclient.domain.po.sd;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import java.time.LocalDateTime;
|
import java.io.Serializable;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author guo
|
* @since 2025-09-18
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName("sd.order_process_detail")
|
public class OrderProcessDetail implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* <报工流程明细表>
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 订单id
|
*/
|
private String orderId;
|
|
/**
|
* 流程卡id
|
*/
|
private String processId;
|
|
/**
|
* 订单序号
|
*/
|
private Integer orderNumber;
|
|
/**
|
* 子产品序号
|
*/
|
private Integer technologyNumber;
|
|
/**
|
* 工艺名称
|
*/
|
private String process;
|
|
/**
|
* 完工总数量
|
*/
|
private Integer reportingWorkNumCount;
|
|
/**
|
* 完工真实数量
|
*/
|
private Integer reportingWorkNum;
|
|
/**
|
* 次破数量
|
*/
|
private Integer brokenNum;
|
|
private LocalDateTime createTime;
|
|
private LocalDateTime updateTime;
|
|
|
}
|