You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
385 B
21 lines
385 B
2 years ago
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# @Time : 2023/7/31 16:28
|
||
|
# @Author : old-tom
|
||
|
# @File : transfer
|
||
|
# @Project : jtxy_data_transfer
|
||
|
# @Desc :
|
||
|
|
||
|
class BaseTransfer(object):
|
||
|
def remove_user_from_idm(self):
|
||
|
"""
|
||
|
从IDM中移除用户
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
def register_to_idm(self):
|
||
|
"""
|
||
|
注册用户
|
||
|
"""
|
||
|
pass
|