新版仿ok交易所-后端
peter
2025-09-20 d1db4f297660cc15a280bcc1c838d95b01187d5f
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();
}