Blame view

src/main/java/com/huaheng/api/erp/domainBack/finishedR/MasterFinished.java 474 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.huaheng.api.erp.domainBack.finishedR;

import java.util.List;

import lombok.Data;

/**
 * 工地完入库单
 */
@Data
public class MasterFinished {
    //企业编号
    private Integer sfeaent;
    //组织编号 营运据点
    private String sfeasite;
16
17
    //mes单号
    private String sfeaud002;
18
19
20
21
22
23
24
25
26
27
28
29
30

    //完工入库过账单号
    private String sfeadocno;

    //wms单号
    private String source_no;



    private List<DetailFinished> detail;


}