tangchuanxing_branch
CR7 9 months ago
parent 1414e91be9
commit e260078095

@ -0,0 +1,37 @@
/*
* Copyright (c) 2018-2999 广 All rights reserved.
*
* https://www.mall4j.com/
*
*
*
*
*/
package com.yami.shop.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yami.shop.bean.model.Category;
import java.util.List;
/**
* Mapper
*
* @author lanhai
*/
public interface CategoryMapper extends BaseMapper<Category> {
/**
* ID
* @param parentId ID
* @return
*/
List<Category> listByParentId(Long parentId);
/**
* ID
* @param shopId ID
* @return
*/
List<Category> tableCategory(Long shopId);
}
Loading…
Cancel
Save