xuhy
4 天以前 508f3e225df87e0da974424981e7782fc5ce875c
ruoyi-system/src/main/java/com/ruoyi/system/domain/TOrderStockGoods.java
@@ -46,13 +46,17 @@
    private String goodsName;
    @ApiModelProperty(value = "成本价")
    @Excel(name = "进货价格",width = 15)
    @TableField("costPrice")
    private BigDecimal costPrice;
    @ApiModelProperty(value = "销售价")
    @TableField("salePrice")
    private BigDecimal salePrice;
    @ApiModelProperty(value = "本次进货价格")
    @Excel(name = "进货价格",width = 15)
    @TableField("thisCostPrice")
    private BigDecimal thisCostPrice;
    @ApiModelProperty(value = "商品图")
    @TableField("goodsPicture")
@@ -62,5 +66,7 @@
    @Excel(name = "商品数量",width = 15)
    @TableField("stockCount")
    private Integer stockCount;
    @ApiModelProperty(value = "商品id")
    @TableField("goodsId")
    private Long goodsId;
}