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);
|
}
|