admin
2020-04-15 ee5c8055b1c0dd7c67a9025a76b10bd287c93d9a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yeshi.fanli.dao.mybatis;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.system.CustomerName;
 
public interface CustomerNameMapper extends BaseMapper<CustomerName>{
    
    List<CustomerName> listByTypeAndName(@Param("start") long start, @Param("count") int count, 
            @Param("type")Integer type, @Param("key")String key);
}