lishenao
9 小时以前 5c1a58d067512df6099f9cc95f577c9991128163
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
package com.ruoyi.inventory.excel;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class StockOutExcelDto {
    @Excel(name = "出库时间")
    private String inboundTime;
    @Excel(name = "出库批次")
    private String inboundBatch;
    @Excel(name = "产品大类")
    private String productCategory;
    @Excel(name = "规格型号")
    private String specificationModel;
    @Excel(name = "单位")
    private String unit;
    @Excel(name = "出库数量")
    private Integer inboundQuantity;
    @Excel(name = "含税单价")
    private BigDecimal taxInclusiveUnitPrice;
    @Excel(name = "含税总价")
    private BigDecimal taxInclusiveTotal;
    @Excel(name = "不含税总价")
    private BigDecimal taxExclusiveTotal;
    @Excel(name = "税率")
    private BigDecimal taxRate;
    @Excel(name = "出库人")
    private String outboundPerson;
 
}