huminmin
19 小时以前 ce1b42869e62c32dd8eb609678fc833750363d85
src/main/java/com/ruoyi/basic/pojo/ProductModel.java
@@ -6,6 +6,7 @@
import lombok.Data;
import java.math.BigDecimal;
import java.time.LocalDateTime;
@Data
@TableName("product_model")
@@ -29,8 +30,11 @@
    @Excel(name = "产品名称")
    private String productName;
    @Excel(name = "产品编码")
    private String productCode;
    /**
     * 物料编号
     */
    @Excel(name = "物料编号")
    private String materialCode;
    /**
     * 规格型号
@@ -62,4 +66,7 @@
    @TableField(exist = false)
    @Excel(name = "剩余库存")
    private BigDecimal stockQuantity;
    @TableField(exist = false)
    private LocalDateTime createTime;
}