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;
|
|
}
|