package com.ruoyi.inventory.excel;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class StockInExcelDto {
|
@Excel(name = "入库时间")
|
private String inboundTime;
|
@Excel(name = "入库批次")
|
private String inboundBatch;
|
@Excel(name = "供应商名称")
|
private String supplierName;
|
@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 inboundPerson;
|
}
|