新版仿ok交易所-后端
1
dd
2026-01-20 f6ed55020df35add989a172df957e61f0c13e85b
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();
}