xuhy
2024-08-27 96483f10fdb66727c3767826fcec6c99958e74b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.system.domain.TOrderMealGoods;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * <p>
 * 餐饮订单商品 Mapper 接口
 * </p>
 *
 * @author xiaochen
 * @since 2024-08-14
 */
@Mapper
public interface TOrderMealGoodsMapper extends BaseMapper<TOrderMealGoods> {
 
}