maven
11 小时以前 5eec9b5a9d8bf9e49663d5a51cab7490fef5b204
main-business/src/main/java/com/ruoyi/business/entity/PurchaseRegistration.java
@@ -8,7 +8,7 @@
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
import java.time.LocalDate;
/**
 * 采购登记表 实体类
@@ -28,7 +28,7 @@
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     *
     *  供应商id
     */
    @TableField(value = "supplier_id")
    private Long supplierId;
@@ -47,11 +47,7 @@
     */
    @TableField(value = "coal_id")
    private Long coalId;
    /**
     * 煤种类型
     */
    @TableField(value = "coal")
    private String coal;
    /**
     * 采购数量
     */
@@ -86,10 +82,21 @@
     * 登记人id
     */
    @TableField(value = "registrant_id")
    private String registrantId;
    private Long registrantId;
    /**
     * 登记日期
     */
    @TableField(value = "registration_date")
    private Date registrationDate;
    private LocalDate registrationDate;
    /**
     * 运费
     */
    @TableField(value = "freight")
    private BigDecimal freight;
    /**
     * 类型(1-成品,2-原料)
     */
    @TableField(value = "type")
    private Integer type;
}