package com.chinaztt.mes.quality.dto;
|
|
import com.chinaztt.mes.quality.entity.ZxLabelBindRelation;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @Description : 中兴标签关系绑定DTO
|
* @ClassName : ZxLabelBindRelationDTO
|
* @Author : sll
|
* @Date: 2022-11-30 18:03
|
*/
|
@Data
|
public class ZxLabelBindRelationDTO extends ZxLabelBindRelation{
|
@ApiModelProperty(value = "mes码节点")
|
private MesNode mesNode;//mes码节点
|
|
@ApiModelProperty(value = "pkg码节点")
|
private PkgNode pkgNode;//pkg码节点
|
|
@Data
|
public static class MesNode{
|
private String part_no;//零件号
|
private String lot_batch_no;//批次号
|
private BigDecimal qty_arrived;//数量
|
private String wdr;
|
private String unit_meas;//计量单位
|
private String material_code;//客户物料编码
|
}
|
|
@Data
|
public static class PkgNode{
|
private String pkgId;//pkgid
|
private String materialCode;//客户物料编码
|
private BigDecimal quality;//数量
|
}
|
}
|