package com.xcong.excoin.modules.yunding.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
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.member.entity.MemberAccountMoneyChangeEntity;
|
import com.xcong.excoin.modules.member.entity.MemberEntity;
|
import com.xcong.excoin.modules.yunding.entity.BasicSettingEntity;
|
import com.xcong.excoin.modules.yunding.entity.YdOrderEntity;
|
import com.xcong.excoin.modules.yunding.entity.YdProductEntity;
|
import com.xcong.excoin.modules.yunding.vo.YdAgentOrderVo;
|
import com.xcong.excoin.modules.yunding.vo.YdMemberVo;
|
|
public interface IBasicSettingService extends IService<BasicSettingEntity> {
|
|
IPage<YdOrderEntity> getOrderList(YdOrderEntity ydOrderEntity, QueryRequest request);
|
|
IPage<YdProductEntity> getYdProductList(YdProductEntity ydProductEntity, QueryRequest request);
|
|
IPage<YdMemberVo> getYdMemberList(YdOrderEntity ydOrderEntity, QueryRequest request);
|
|
IPage<YdAgentOrderVo> getAgentOrderList(YdOrderEntity ydOrderEntity, QueryRequest request);
|
|
IPage<MemberAccountMoneyChangeEntity> seeAgentReturn(QueryRequest request, MemberEntity memberEntity);
|
|
IPage<MemberAccountMoneyChangeEntity> seeReturn(QueryRequest request, MemberEntity memberEntity);
|
|
IPage<YdOrderEntity> seeOrder(QueryRequest request, MemberEntity memberEntity);
|
|
FebsResponse addIsTraderOn(Long id);
|
|
FebsResponse delIsTraderOn(Long id);
|
|
YdProductEntity getydProductUpdateById(long id);
|
|
FebsResponse ydProductUpdateOn(YdProductEntity ydProductEntity);
|
}
|