新版仿ok交易所-后端
1
zyy3
2025-11-14 bf09786ee49251f54f78945856742d0a60eb1f28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yami.trading.admin.controller.service;
 
import java.util.List;
 
public interface SysUserOperService {
    public List<String> getListUser(String sysUserId);
    void  addAgent(String userName, String password, String safeWord, String roleName, String remarks, String parentsUserCode, boolean loginAuthorityboolean, boolean  operaAuthority);
 
    void bindGoogleAuthCode(String googleAuthSecret,String id);
 
    void  restPassword(String password,String id);
 
    void unbindGoogleAuthCode(String id);
 
    boolean checkAgent();
}