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
28
29
30
package com.yeshi.fanli.service.impl.integral;
 
import java.util.List;
 
import javax.annotation.Resource;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.dao.mybatis.integral.IntegralTaskMapper;
import com.yeshi.fanli.entity.integral.IntegralTask;
import com.yeshi.fanli.service.inter.integral.IntegralTaskService;
 
@Service
public class IntegralTaskServiceImpl implements IntegralTaskService {
 
    @Resource
    private IntegralTaskMapper integralTaskMapper;
 
    @Override
    public List<IntegralTask> listByCid(Long cid) {
        return integralTaskMapper.listByCid(cid);
    }
    
    
    @Override
    public IntegralTask getByCidAndUniqueKey(Long cid, String uniqueKey) {
        return integralTaskMapper.getByCidAndUniqueKey(cid, uniqueKey);
    }
}