|
@@ -0,0 +1,20 @@
|
|
|
+#!/usr/bin/env python
|
|
|
+# -*- encoding: utf-8 -*-
|
|
|
+'''
|
|
|
+@Contact : liuyuqi.gov@msn.cn
|
|
|
+@Time : 2023/12/30 10:40:51
|
|
|
+@License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
|
|
|
+@Desc : user dao
|
|
|
+'''
|
|
|
+
|
|
|
+class UserDAO(object):
|
|
|
+
|
|
|
+ def __init__(self):
|
|
|
+ pass
|
|
|
+
|
|
|
+ def login(self, username, password):
|
|
|
+ pass
|
|
|
+
|
|
|
+ def auto_login(self, token:str):
|
|
|
+ pass
|
|
|
+
|