| | |
| | | */ |
| | | package org.springblade.modules.integral.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springblade.modules.integral.entity.Integral; |
| | | import org.springblade.modules.integral.mapper.IntegralMapper; |
| | | import org.springblade.modules.integral.service.IIntegralService; |
| | | import org.springblade.modules.integral.vo.IntegralVO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | |
| | | return baseMapper.selectList(uid,type); |
| | | } |
| | | |
| | | @Override |
| | | public List<Integral> order() { |
| | | return baseMapper.order(); |
| | | } |
| | | |
| | | } |