| | |
| | | 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; |
| | | |
| | |
| | | @TableField("salePrice") |
| | | private BigDecimal salePrice; |
| | | |
| | | @ApiModelProperty(value = "本次进货价格") |
| | | @Excel(name = "进货价格",width = 15) |
| | | @TableField("thisCostPrice") |
| | | private BigDecimal thisCostPrice; |
| | | |
| | | @ApiModelProperty(value = "商品图") |
| | | @TableField("goodsPicture") |
| | | private String goodsPicture; |
| | | |
| | | @ApiModelProperty(value = "进货数量") |
| | | @Excel(name = "商品数量",width = 15) |
| | | @TableField("stockCount") |
| | | private Integer stockCount; |
| | | |
| | | @ApiModelProperty(value = "进货价格") |
| | | @TableField("stockPrice") |
| | | private BigDecimal stockPrice; |
| | | |
| | | |
| | | @ApiModelProperty(value = "商品id") |
| | | @TableField("goodsId") |
| | | private Long goodsId; |
| | | } |