#
lsh
2024-09-06 eb151270cf5ec0166d11ad59af42785cf31b183c
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
package com.zy.asrs.common.domain.entity;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import com.zy.asrs.common.wms.entity.Mat;
import lombok.Data;
 
/**
 * 0.A 1.B 2.C 3.D 4.E 5.F 6.G 7.H 8.I
 * 9.J 10.K 11.L 12.M 13.N 14.O 15.P 16.Q 17.R 18.S
 * 19.T 20.U 21.V 22.W 23.X 24.Y 25.Z
 */
@Data
@ExcelIgnoreUnannotated
public class OutLocOrderExcel extends Mat {
    @ExcelProperty(index = 0, value = "订单号")
    private String order;
    @ExcelProperty(index = 1, value = "单据类型")
    private String sign;
    @ExcelProperty(index = 2, value = "品号")
    private String matnr;
    @ExcelProperty(index = 3, value = "数量")
    private String anfme;
    @ExcelProperty(index = 4, value = "此列为备注==》不用填写==》订单号与单据类型只需要填写第一列即可")
    private String memo1;
}