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