zainali5120
2020-09-16 d174d6963d62b3bd176f9e7ba3cf0d7f75a91b69
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.xcong.excoin.modules.member.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.member.entity.AgentReturnEntity;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @author helius
 */
public interface AgentReturnDao extends BaseMapper<AgentReturnEntity> {
 
    List<AgentReturnEntity> selectAllNeedMoneyReturn();
 
    int updateAgentReturnStatusByRefererId(@Param("isReturn") int isReturn, @Param("refererId") Long refererId);
}