package com.stylefeng.guns.modular.system.service;
|
|
import com.baomidou.mybatisplus.service.IService;
|
import com.stylefeng.guns.modular.system.model.UserUser;
|
import com.stylefeng.guns.modular.system.util.ResultUtil;
|
import com.stylefeng.guns.modular.system.warpper.BaseWarpper;
|
|
import java.util.List;
|
|
public interface IUserUserService extends IService<UserUser> {
|
|
/**
|
* 获取亲密账号数据
|
* @param uid
|
* @return
|
* @throws Exception
|
*/
|
List<BaseWarpper> getUserUserList(Integer uid) throws Exception;
|
|
|
/**
|
* 添加亲密账号
|
* @param uid
|
* @return
|
* @throws Exception
|
*/
|
ResultUtil addUserUser(Integer uid, String content) throws Exception;
|
|
|
/**
|
* 解绑亲密账户
|
* @param id
|
* @return
|
* @throws Exception
|
*/
|
ResultUtil unbundleUserUser(Integer id) throws Exception;
|
}
|