yujian
2019-08-09 41aec48fb1e43f42807b1c71c9aeb19ebbf7506c
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
package com.yeshi.fanli.dao.mybatis.integral;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.integral.IntegralTaskClass;
import com.yeshi.fanli.vo.integral.IntegralTaskClassVO;
 
public interface IntegralTaskClassMapper extends BaseMapper<IntegralTaskClass> {
    
    /**
     * 获取有效任务
     * @return
     */
    List<IntegralTaskClassVO> getIntegralTaskClassVO(@Param("start")long start, @Param("count")int count);
    
    Long countTaskClass();
    
    /**
     * 根据唯一值查询
     * @param uniqueKey
     * @return
     */
    IntegralTaskClass getByUniqueKey(@Param("uniqueKey") String uniqueKey);
}