liding
4 天以前 dc9010b9fc4ca6929992bfc3cc4fa110ebc24b2c
main-business/src/main/java/com/ruoyi/business/entity/OfficialInventory.java
@@ -8,7 +8,7 @@
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
import java.time.LocalDate;
/**
 * 正式库存表 实体类
@@ -26,7 +26,12 @@
     * 主键ID
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    private Long id;
    /**
     * 待入库id
     */
    @TableField(value = "pending_id")
    private Long pendingId;
    /**
     * 供货商名称
     */
@@ -35,8 +40,8 @@
    /**
     * 煤种
     */
    @TableField(value = "coal_type")
    private String coalType;
    @TableField(value = "coal")
    private String coal;
    /**
     * 单位
     */
@@ -58,10 +63,15 @@
    @TableField(value = "total_price_including_tax")
    private BigDecimal totalPriceIncludingTax;
    /**
     * 成本单价
     * 不含税单价
     */
    @TableField(value = "cost_per_unit")
    private BigDecimal costPerUnit;
    @TableField(value = "price_excluding_tax")
    private BigDecimal priceExcludingTax;
    /**
     * 不含税总价
     */
    @TableField(value = "total_price_excluding_tax")
    private BigDecimal totalPriceExcludingTax;
    /**
     * 待补库
     */
@@ -76,5 +86,11 @@
     * 登记日期
     */
    @TableField(value = "registration_date")
    private Date registrationDate;
    private LocalDate registrationDate;
    /**
     * 合并id
     */
    @TableField(value = "merge_id")
    private String mergeId;
}