| | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.xcong.excoin.common.entity.FebsResponse; |
| | | import com.xcong.excoin.common.entity.QueryRequest; |
| | | import com.xcong.excoin.modules.fish.dto.MemberDto; |
| | | import com.xcong.excoin.modules.fish.entity.CannonAccountMoneyChange; |
| | | import com.xcong.excoin.modules.fish.entity.CannonExchangeRatio; |
| | | import com.xcong.excoin.modules.fish.entity.CannonSetting; |
| | |
| | | import com.xcong.excoin.modules.fish.mapper.CannonSettingMapper; |
| | | import com.xcong.excoin.modules.fish.service.FishService; |
| | | import com.xcong.excoin.modules.fish.vo.CannonAccountMoneyChangeVo; |
| | | import com.xcong.excoin.modules.fish.vo.MemberVo; |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | |
| | | return cannonAccountMoneyChangeVoIPage; |
| | | } |
| | | |
| | | @Override |
| | | public IPage<MemberVo> memberList(MemberDto memberDto, QueryRequest request) { |
| | | Page<MemberVo> page = new Page<>(request.getPageNum(), request.getPageSize()); |
| | | IPage<MemberVo> memberVos = cannonExchangeRatioMapper.findMemberVoInPage(page, memberDto); |
| | | return memberVos; |
| | | } |
| | | |
| | | } |