package cn.iocoder.yudao.module.mes.dal.dataobject.wm.returnissue;
|
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.ToString;
|
|
import java.math.BigDecimal;
|
|
/**
|
* MES 生产退料单行 分页查询 VO(关联 mdm_item 的 code/name/specification)
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class MesWmReturnIssueLinePageVO extends MesWmReturnIssueLineDO {
|
|
/**
|
* 物料编码
|
*
|
* 关联 {@link cn.iocoder.yudao.module.mes.dal.dataobject.mdm.MesMdmItemDO#getCode()}
|
*/
|
private String code;
|
|
/**
|
* 物料名称
|
*
|
* 关联 {@link cn.iocoder.yudao.module.mes.dal.dataobject.mdm.MesMdmItemDO#getName()}
|
*/
|
private String name;
|
|
/**
|
* 规格型号
|
*
|
* 关联 {@link cn.iocoder.yudao.module.mes.dal.dataobject.mdm.MesMdmItemDO#getSpecification()}
|
*/
|
private String specification;
|
|
}
|