| | |
| | | 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; |
| | |
| | | private String goodsNum; |
| | | |
| | | @ApiModelProperty(value = "商品名称") |
| | | @Excel(name = "进货商品", width = 15) |
| | | @TableField("goodsName") |
| | | private String goodsName; |
| | | |
| | | @ApiModelProperty(value = "商品成本价") |
| | | @Excel(name = "商品进价", width = 15) |
| | | @TableField("goodsCostPrice") |
| | | private BigDecimal goodsCostPrice; |
| | | |
| | |
| | | private BigDecimal goodsSalePrice; |
| | | |
| | | @ApiModelProperty(value = "商品数量") |
| | | @Excel(name = "进货数量", width = 15) |
| | | @TableField("goodsCount") |
| | | private Integer goodsCount; |
| | | |