xiaoyong931011
2020-07-23 51301a2cbac8a81476d8b39d9206c05fc649630d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.xcong.excoin.modules.trademanage.mapper;
 
import org.apache.ibatis.annotations.Param;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.xcong.excoin.modules.trademanage.entity.AgentReturnEntity;
 
public interface AgentReturnMapper extends BaseMapper<AgentReturnEntity> {
 
    IPage<AgentReturnEntity> findMemberAgentReturnInfosInPage(Page<AgentReturnEntity> page,
            @Param("record") AgentReturnEntity agentReturnEntity);
 
    String selectYJByMemberId();
 
}