liyong
4 天以前 0f792c9b3b88dc4b1b7b306f89e257d931d2d0bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
 
}