package inventory.domain;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import lombok.Data;
|
|
/**
|
*
|
* @TableName stock_in
|
*/
|
@Data
|
public class StockIn implements Serializable {
|
/**
|
* 入库记录ID
|
*/
|
private Integer id;
|
|
/**
|
* 产品id
|
*/
|
private Integer productId;
|
|
/**
|
* 入库时间
|
*/
|
private Date inboundTime;
|
|
/**
|
* 入库批次(如“第三批次”)
|
*/
|
private String inboundBatch;
|
|
/**
|
* 供应商名称
|
*/
|
private String supplierName;
|
|
/**
|
* 入库数量
|
*/
|
private Integer inboundQuantity;
|
|
/**
|
* 含税单价
|
*/
|
private BigDecimal taxInclusivePrice;
|
|
/**
|
* 含税总价
|
*/
|
private BigDecimal taxInclusiveTotal;
|
|
/**
|
* 税率
|
*/
|
private BigDecimal taxRate;
|
|
/**
|
* 不含税总价
|
*/
|
private BigDecimal taxExclusiveTotal;
|
|
/**
|
* 入库人
|
*/
|
private String inboundPerson;
|
|
private static final long serialVersionUID = 1L;
|
}
|