yujian
2019-12-16 3b956ac2380929552bd53fad5a9a0515a3b0d62f
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
package com.yeshi.fanli.dao.mybatis.user;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.bus.invite.SpreadImg;
 
public interface SpreadImgMapper extends BaseMapper<SpreadImg> {
    /**
     * 获取所有推广图
     * 
     * @return
     */
    List<SpreadImg> listAll();
    
    long countAll();
    
    List<SpreadImg> listQuery(@Param("start") long start, @Param("count") int count, @Param("url") String url);
    
    
    long countQuery(@Param("url") String url);
    
}