| | |
| | | private String goodsName; |
| | | |
| | | @ApiModelProperty(value = "商品成本价") |
| | | @Excel(name = "商品进价", width = 15) |
| | | @Excel(name = "商品进价", width = 15,isStatistics = true) |
| | | @TableField("goodsCostPrice") |
| | | private BigDecimal goodsCostPrice; |
| | | |
| | |
| | | private Integer goodsCount; |
| | | |
| | | @ApiModelProperty(value = "售卖价格") |
| | | @TableField("salePrice") |
| | | private BigDecimal salePrice; |
| | | @TableField("thisSalePrice") |
| | | private BigDecimal thisSalePrice; |
| | | |
| | | @ApiModelProperty(value = "商品图") |
| | | @TableField("goodsPicture") |
| | | private String goodsPicture; |
| | | |
| | | @ApiModelProperty(value = "菜品类型") |
| | | @TableField("typeName") |
| | | private String typeName; |
| | | @ApiModelProperty(value = "类型id") |
| | | @TableField("typeId") |
| | | private Long typeId; |
| | | |
| | | @ApiModelProperty(value = "商品id") |
| | | @TableField("goodsId") |
| | | private Long goodsId; |
| | | } |