新版仿ok交易所-后端
1
zyy
2025-09-22 8d724caa618ff9d313c261ce8b52aed7566d57a4
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();
}