| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | 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.vo.CannonAccountMoneyChangeVo; |
| | | import com.xcong.excoin.modules.fish.vo.MemberVo; |
| | | |
| | | public interface FishService extends IService<CannonExchangeRatio> { |
| | | |
| | |
| | | FebsResponse exchangeRatioUpdate(CannonExchangeRatio cannonExchangeRatio); |
| | | |
| | | IPage<CannonAccountMoneyChangeVo> accountList(CannonAccountMoneyChange cannonAccountMoneyChange, QueryRequest request); |
| | | |
| | | IPage<MemberVo> memberList(MemberDto memberDto, QueryRequest request); |
| | | } |