package com.ruoyi.inventory.dto;
|
|
import com.ruoyi.inventory.pojo.StockManagement;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
@Data
|
public class StockManagementDto extends StockManagement {
|
|
private String supplierName;
|
private String productCategory;
|
private String unit;
|
/**
|
* 含税单价
|
*/
|
private BigDecimal taxInclusiveUnitPrice;
|
|
/**
|
* 含税总价
|
*/
|
private BigDecimal taxInclusiveTotalPrice;
|
|
/**
|
* 税率
|
*/
|
private BigDecimal taxRate;
|
|
/**
|
* 不含税总价
|
*/
|
private BigDecimal taxExclusiveTotalPrice;
|
/**
|
* 规格型号
|
*/
|
private String specificationModel;
|
}
|