xuhy
2024-08-26 916fe4fbd615dffcf5919c9fa6be3d2f94e8e750
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.system.dto;
 
import com.ruoyi.system.domain.TOrderMeal;
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;
}