whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.fgkj.mapper.impl;
 
import java.util.List;
 
/**
 * @Description :
 * @date 2020/09/11
 **/
import org.springframework.stereotype.Repository;
 
public interface PageParamMapper {
 
 
    public List findByCategoryId(int categoryId) ;
 
    public boolean update(int id, int status);
}