liding
4 天以前 dc9010b9fc4ca6929992bfc3cc4fa110ebc24b2c
main-business/src/main/java/com/ruoyi/business/entity/PendingInventory.java
@@ -8,7 +8,7 @@
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
import java.time.LocalDate;
/**
 * 待入库表 实体类
@@ -20,13 +20,11 @@
@TableName("pending_inventory")
public class PendingInventory extends MyBaseEntity {
    private static final long serialVersionUID = 1L;
    /**
     * 主键ID
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    private Long id;
    /**
     * 供货商名称
     */
@@ -35,8 +33,8 @@
    /**
     * 煤种
     */
    @TableField(value = "coal_type")
    private String coalType;
    @TableField(value = "coal")
    private String coal;
    /**
     * 单位
     */
@@ -58,18 +56,23 @@
    @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;
    /**
     * 登记人
     */
    @TableField(value = "registrant")
    private String registrant;
    @TableField(value = "registrant_id")
    private String registrantId;
    /**
     * 登记时间
     * 登记日期
     */
    @TableField(value = "registration_time")
    private Date registrationTime;
    @TableField(value = "registration_date")
    private LocalDate registrationDate;
}