xuhy
2024-08-15 98e7dc8c77c30a6cad499a4a12b5334da1fe16d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.TOrderMeal;
import com.ruoyi.system.dto.AddDishDTO;
import com.ruoyi.system.dto.CheckoutDTO;
import com.ruoyi.system.dto.TOrderMealDTO;
 
/**
 * <p>
 * 餐饮订单 服务类
 * </p>
 *
 * @author xiaochen
 * @since 2024-08-14
 */
public interface TOrderMealService extends IService<TOrderMeal> {
 
    /**
     * 开台-点菜接口
     * @param dto
     * @return
     */
    void add(TOrderMealDTO dto);
 
    /**
     * 加菜接口
     * @param dto
     */
    void addDish(AddDishDTO dto);
 
    /**
     * 结账接口
     * @param dto
     */
    void checkout(CheckoutDTO dto);
}