| | |
| | | import javax.annotation.Resource;
|
| | |
|
| | | import org.springframework.stereotype.Service;
|
| | | import org.springframework.transaction.annotation.Transactional;
|
| | |
|
| | | import com.yeshi.fanli.dao.mybatis.integral.IntegralDetailMapper;
|
| | | import com.yeshi.fanli.entity.bus.user.UserInfoExtra;
|
| | | import com.yeshi.fanli.entity.integral.IntegralDetail;
|
| | | import com.yeshi.fanli.service.inter.user.UserInfoExtraService;
|
| | | import com.yeshi.fanli.service.inter.user.integral.IntegralDetailService;
|
| | | import com.yeshi.fanli.util.TimeUtil;
|
| | | import com.yeshi.fanli.vo.integral.IntegralDetailVO;
|
| | |
| | |
|
| | | @Resource
|
| | | private IntegralDetailMapper integralDetailMapper;
|
| | | |
| | | @Resource
|
| | | private UserInfoExtraService userInfoExtraService;
|
| | |
|
| | | @Override
|
| | | public void insertSelective(IntegralDetail record) {
|
| | |
| | | return integralDetailMapper.getCumulativeMoney(uid);
|
| | | }
|
| | |
|
| | | |
| | | @Override
|
| | | public Long countNewAddByDate(String preDay) {
|
| | | return integralDetailMapper.countNewAddByDate(preDay);
|
| | | }
|
| | | |
| | | @Override
|
| | | public List<IntegralDetail> listQuery(long start, int count, String key) {
|
| | | return integralDetailMapper.listQuery(start, count, key);
|
| | | }
|
| | | |
| | | @Override
|
| | | public long countQuery(String key) {
|
| | | Long count = integralDetailMapper.countQuery(key);
|
| | | if (count == null) {
|
| | | count = 0L;
|
| | | }
|
| | | return count;
|
| | | }
|
| | | |
| | | |
| | | }
|
| | |
|