skyouc
4 天以前 1af8eb8dc7bdafd9e2f8d8650c93243a0cb6963c
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package com.vincent.rsf.server.manager.entity.excel;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.vincent.rsf.server.manager.entity.excel.annotation.ExcelAutoColumnSize;
import com.vincent.rsf.server.manager.entity.excel.annotation.ExcelComment;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
@Data
@ExcelAutoColumnSize
@Accessors(chain = true)
public class DeliveryTemplate implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Excel(name = "*DO单号")
    @ApiModelProperty(value= "*PO单号")
    @ExcelComment(value = "poCode", example = "PO25413975")
    private String poCode;
 
    @Excel(name = "*行号")
    @ApiModelProperty(value= "*行号")
    @ExcelComment(value = "platItemId", example = "100068541001")
    private String platItemId;
 
 
    @Excel(name = "单据类型")
    @ApiModelProperty(value= "单据类型")
    @ExcelComment(value = "type", example = "入库单")
    private String type;
 
    @Excel(name = "单据来源")
    @ApiModelProperty(value= "单据来源")
    @ExcelComment(value = "source", example = "ERP同步")
    private String source;
 
    @Excel(name = "客单号")
    @ApiModelProperty(value= "客单号")
    @ExcelComment(value = "platOrderCode", example = "2052146822")
    private String platOrderCode;
 
    @Excel(name = "工单号")
    @ApiModelProperty(value= "工单号")
    @ExcelComment(value = "platWorkCode", example = "64875413")
    private String platWorkCode;
 
    @Excel(name = "项目号")
    @ApiModelProperty(value= "项目号")
    @ExcelComment(value = "projectCode", example = "65413")
    private String projectCode;
 
    @Excel(name = "业务类型")
    @ApiModelProperty(value= "业务类型")
    @ExcelComment(value = "wkType", example = "采购入库单")
    private String wkType;
 
    @Excel(name = "项目名称")
    @ApiModelProperty(value= "项目名称")
    @ExcelComment(value = "project", example = "京东电商立库")
    private String project;
 
    /**
     * 物料编码
     */
    @Excel(name = "*物料编码")
    @ApiModelProperty(value= "*物料编码")
    @ExcelComment(value = "matnrCode", example = "101000000002")
    private String matnrCode;
 
    /**
     *
     */
    @Excel(name = "物料名称")
    @ApiModelProperty(value= "物料名称")
    @ExcelComment(value = "matnrName", example = "TC-03128寸连体内上托")
    private String matnrName;
 
 
    /**
     * 数量
     */
    @Excel(name = "数量")
    @ApiModelProperty(value= "数量")
    @ExcelComment(value = "anfme", example = "75")
    private Double anfme;
 
    /**
     * 供应商编码
     */
    @Excel(name = "*供应商编码")
    @ApiModelProperty(value= "*供应商编码")
    @ExcelComment(value = "splrCode", example = "685947")
    private String splrCode;
 
    /**
     * 供应商批次
     */
    @Excel(name = "供应商批次")
    @ApiModelProperty(value= "供应商批次")
    @ExcelComment(value = "splrBatch", example = "20250401")
    private String splrBatch;
 
 
    @Excel(name = "预计送达时间")
    @ApiModelProperty("预计送达时间")
    @ExcelComment(value = "arrTime", example = "2025-05-21")
    private String arrTime;
 
 
    @Excel(name = "备注")
    @ApiModelProperty("备注")
    @ExcelComment(value = "memo", example = "注:易碎品,轻拿放")
    private String memo;
 
}