miduo_gm/src/main/java/com/jmfy/dao/SupportUserDao.java

59 lines
1.2 KiB
Java
Raw Normal View History

2021-04-09 15:50:15 +08:00
package com.jmfy.dao;
import com.jmfy.model.SupportUser;
import java.util.List;
import java.util.Map;
/**
* @author hj
*
*/
public interface SupportUserDao {
/**
*
* @return
* @throws Exception
*/
List<SupportUser> getSupportUserList() throws Exception;
/**
* gs
* @param serverId
* @param userId
* @param accountId
* @throws Exception
* @return
*/
SupportUser getSupportUser(int serverId,int userId,String accountId) throws Exception;
/**
* gs
* @param id
* @throws Exception
* @return
*/
SupportUser getSupportUserById(int id) throws Exception;
/**
*
* @param sUser
*/
void insertSupportUser(SupportUser sUser) throws Exception;
/**
*
* @param gsUser
* @throws Exception
*/
void updateSupportUser(SupportUser gsUser) throws Exception;
/**
* gs
* @param gsUser
* @throws Exception
*/
void deleteSupportGs(SupportUser gsUser) throws Exception;
}