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.OrderMealGeneratorDTO;
|
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);
|
|
}
|