xuhy
2024-09-11 9ca97fd558700e7054c5f54192a9db7a1e6b8230
ruoyi-system/src/main/java/com/ruoyi/system/domain/TOrderMealGoods.java
@@ -42,6 +42,9 @@
    @ApiModelProperty(value = "销售价")
    @TableField("goodsSalePrice")
    private BigDecimal goodsSalePrice;
    @ApiModelProperty(value = "成本价")
    @TableField("costPrice")
    private BigDecimal costPrice;
    @ApiModelProperty(value = "商品图")
    @TableField("goodsPicture")
@@ -54,6 +57,15 @@
    @ApiModelProperty(value = "订单id")
    @TableField("orderId")
    private Long orderId;
    @ApiModelProperty(value = "菜品类型")
    @TableField("typeName")
    private String typeName;
    @ApiModelProperty(value = "类型id")
    @TableField("typeId")
    private Long typeId;
    @ApiModelProperty(value = "商品id")
    @TableField("goodsId")
    private Long goodsId;
}