123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package com.game.business.service;
- import java.rmi.ServerException;
- import java.util.List;
- import com.game.business.domain.AppUserAgent;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.game.business.dto.AppAgentEditDto;
- import com.game.business.dto.AppAgentTeamDto;
- import com.game.business.vo.AppAgentTeamVo;
- import com.game.common.core.domain.HttpRet;
- /**
- * 用户代理表Service接口
- *
- * @author game
- * @date 2024-06-25
- */
- public interface IAppUserAgentService extends IService<AppUserAgent> {
- /**
- * 查询用户代理表
- *
- * @param id 用户代理表主键
- * @return 用户代理表
- */
- public AppUserAgent selectAppUserAgentById(Long id);
- /**
- * 查询用户代理表列表
- *
- * @param appUserAgent 用户代理表
- * @return 用户代理表集合
- */
- public List<AppUserAgent> selectAppUserAgentList(AppUserAgent appUserAgent);
- /**
- * 新增用户代理表
- *
- * @param appUserAgent 用户代理表
- * @return 结果
- */
- public int insertAppUserAgent(AppUserAgent appUserAgent);
- /**
- * 修改用户代理表
- *
- * @param appUserAgent 用户代理表
- * @return 结果
- */
- public int updateAppUserAgent(AppUserAgent appUserAgent);
- /**
- * 批量删除用户代理表
- *
- * @param ids 需要删除的用户代理表主键集合
- * @return 结果
- */
- public int deleteAppUserAgentByIds(Long[] ids);
- /**
- * 删除用户代理表信息
- *
- * @param id 用户代理表主键
- * @return 结果
- */
- public int deleteAppUserAgentById(Long id);
- /**
- * 统计用户代理
- *
- * */
- public int countAgent(Long userId,String beginTime,String endTime);
- /**
- * 统计用户团队投注金额
- * */
- public Double sumBetting(String beginTime,String endTime,Long pid);
- /**
- * 修改代理设置
- * */
- public HttpRet<Boolean> updateSetting(AppAgentEditDto editDto);
- /**
- * 团队列表
- * */
- public List<AppAgentTeamVo> teamList(AppAgentTeamDto teamDto);
- }
|