package com.ruoyi.inventory.excel;
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
@Data
|
public class StockManagementExcelDto {
|
@Excel(name = "库存日期")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date boundTime;
|
@Excel(name = "入库时间")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date inboundTime;
|
@Excel(name = "供应商名称")
|
private String supplierName;
|
@Excel(name = "产品大类")
|
private String productCategory;
|
@Excel(name = "规格型号")
|
private String specificationModel;
|
@Excel(name = "单位")
|
private String unit;
|
@Excel(name = "库存数量")
|
private Integer stockQuantity;
|
@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;
|
}
|