xuhy
2024-08-27 96483f10fdb66727c3767826fcec6c99958e74b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.system.dto;
 
import com.ruoyi.system.domain.TOrderMeal;
import com.ruoyi.system.domain.TOrderMealGoods;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "开台点菜DTO")
public class TOrderMealDTO extends TOrderMeal {
 
    @ApiModelProperty(value = "菜品集合")
    private List<MealOrderGoodsDTO> mealOrderGoodsDTOS;
 
    @ApiModelProperty(value = "备注")
    private String remark;
}