xuhy
2024-09-05 8c2128317af3e5a2df32150f3684167925ee4508
ruoyi-system/src/main/java/com/ruoyi/system/domain/TOrderStockGoods.java
@@ -1,5 +1,6 @@
package com.ruoyi.system.domain;
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
@@ -40,10 +41,12 @@
    private String goodsNum;
    @ApiModelProperty(value = "商品名称")
    @Excel(name = "进货商品",width = 15)
    @TableField("goodsName")
    private String goodsName;
    @ApiModelProperty(value = "成本价")
    @Excel(name = "进货价格",width = 15)
    @TableField("costPrice")
    private BigDecimal costPrice;
@@ -56,12 +59,8 @@
    private String goodsPicture;
    @ApiModelProperty(value = "进货数量")
    @Excel(name = "商品数量",width = 15)
    @TableField("stockCount")
    private Integer stockCount;
    @ApiModelProperty(value = "进货价格")
    @TableField("stockPrice")
    private BigDecimal stockPrice;
}