| | |
| | | package com.yeshi.fanli.service.impl.user.integral;
|
| | |
|
| | | import javax.annotation.Resource;
|
| | |
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | import com.yeshi.fanli.dao.mybatis.integral.IntegralTaskRankMapper;
|
| | | import com.yeshi.fanli.entity.integral.IntegralTaskRank;
|
| | | import com.yeshi.fanli.service.inter.user.integral.IntegralTaskRankService;
|
| | |
|
| | | @Service
|
| | | public class IntegralTaskRankServiceImpl implements IntegralTaskRankService {
|
| | |
|
| | | @Resource
|
| | | private IntegralTaskRankMapper integralTaskRankMapper;
|
| | |
|
| | | @Override
|
| | | public IntegralTaskRank getByTsakIdAndRankId(Long tsakId, Long rankId) {
|
| | | return integralTaskRankMapper.getByTsakIdAndRankId(tsakId, rankId);
|
| | | }
|
| | |
|
| | | }
|
| | |
|
| | | package com.yeshi.fanli.service.impl.user.integral; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import com.yeshi.fanli.dao.mybatis.integral.IntegralTaskRankMapper; |
| | | import com.yeshi.fanli.entity.integral.IntegralTaskRank; |
| | | import com.yeshi.fanli.service.inter.user.integral.IntegralTaskRankService; |
| | | |
| | | @Service |
| | | public class IntegralTaskRankServiceImpl implements IntegralTaskRankService { |
| | | |
| | | @Resource |
| | | private IntegralTaskRankMapper integralTaskRankMapper; |
| | | |
| | | @Override |
| | | public IntegralTaskRank getByTsakIdAndRankId(Long tsakId, Long rankId) { |
| | | return integralTaskRankMapper.getByTsakIdAndRankId(tsakId, rankId); |
| | | } |
| | | |
| | | } |
| | | |