自动化立体仓库 - WMS系统
#
lsh
2024-10-26 9dd23778d5b9a97da390abc4e6f785e60767acf4
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
package com.zy.common.entity;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import com.zy.asrs.entity.result.OrderGiftProofreadingVo;
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 OrderGiftProofreadingExcel extends OrderGiftProofreadingVo {
 
    private String orderNo;
    private String matnr;
    private String batch;
    private String model;
    private Double price;
    private Double weight;
    private Double volume;
    private String specs;
    private String memo;
 
}