zxl
4 天以前 8063ee7eee51bfe25a09428e6efc60f828b270c6
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
package cn.lili.modules.lmk.mapper;
 
import cn.lili.modules.lmk.domain.entity.KitchenType;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import cn.lili.modules.lmk.domain.vo.KitchenTypeVO;
import cn.lili.modules.lmk.domain.form.KitchenTypeForm;
import cn.lili.modules.lmk.domain.query.KitchenTypeQuery;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
/**
 * 厨神类型 Mapper 接口
 *
 * @author wp
 * @since 2025-06-13
 */
@Mapper
public interface KitchenTypeMapper extends BaseMapper<KitchenType> {
 
    /**
     * id查找厨神类型
     * @param id
     * @return
     */
    KitchenTypeVO getById(String id);
 
    /**
    *  分页
    */
    IPage getPage(IPage page, @Param("query") KitchenTypeQuery query);
 
}