admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.yeshi.fanli.dao.mybatis.user.vip;
 
import java.util.Date;
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.bus.user.vip.UserVIPPreInfo;
 
public interface UserVIPPreInfoMapper extends BaseMapper<UserVIPPreInfo> {
 
    /**
     * 根据用户ID与进度检索
     * 
     * @param uid
     * @param procress
     * @return
     */
    UserVIPPreInfo selectByUidAndProcess(@Param("uid") Long uid, @Param("process") int process);
 
    /**
     * 根据用户ID检索
     * 
     * @param uid
     * @return
     */
    List<UserVIPPreInfo> listByUid(@Param("uid") Long uid);
 
    /**
     * 根据进度查询
     * @Title: listByProcess
     * @Description: 
     * @param process
     * @param start
     * @param count
     * @return 
     * List<UserVIPPreInfo> 返回类型
     * @throws
     */
    List<UserVIPPreInfo> listByProcess(@Param("process") int process, @Param("minTime") Date minTime,
            @Param("maxTime") Date maxTime, @Param("start") long start, @Param("count") int count);
 
    long countByProcess(@Param("process") int process, @Param("minTime") Date minTime, @Param("maxTime") Date maxTime);
 
}