admin
2019-03-18 dfbe634e899e92e2fd6ee491ae9c6c3907740fea
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
package com.yeshi.fanli.dao.mybatis.common;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.common.JumpDetail;
 
public interface JumpDetailMapper extends BaseMapper<JumpDetail> {
 
    /**
     * 根据名字搜索
     * 
     * @param name
     * @return
     */
    List<JumpDetail> listSearchByName(@Param("name") String name, @Param("start") long start,
            @Param("count") int count);
 
    /**
     * 根据名字的搜索结果获取数量
     * 
     * @param name
     * @return
     */
    long countSearchByName(@Param("name") String name);
 
}