xiaoyong931011
2021-05-15 97bb5d54315b91b851d6934fb2bb98b80b7dc4f1
src/main/java/com/xcong/excoin/modules/yunding/service/IBasicSettingService.java
@@ -2,10 +2,14 @@
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> {
@@ -15,4 +19,20 @@
    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);
}