jyy
2021-03-22 1d629038767eb756a4823b4e8b11764ac949b63d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.matrix.system.score.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
import com.matrix.core.pojo.PaginationVO;
import com.matrix.system.score.entity.ScoreGoodsNavigation;
 
/**
 * @description 商品栏目表
 * @author jyy
 * @date 2021-02-26 15:26
 */
public interface ScoreGoodsNavigationDao extends BaseMapper<ScoreGoodsNavigation> {
 
}