user_dao.dart 843 B

123456789101112131415161718192021222324252627282930313233
  1. /// Description: user dao
  2. /// Time : 02/20/2024 Tuesday
  3. /// Author : liuyuqi.gov@msn.cn
  4. class UserDao {
  5. /// login
  6. /// @param username
  7. /// @param password
  8. /// @return Future<String>
  9. static Future<String> login(String username, String password) async {
  10. await Future.delayed(Duration(seconds: 2));
  11. if (username == 'admin' && password == 'admin') {
  12. return 'token';
  13. } else {
  14. throw Exception('username or password is incorrect');
  15. }
  16. }
  17. /// logout
  18. static Future<bool> logout() async {
  19. await Future.delayed(Duration(seconds: 2));
  20. return true;
  21. }
  22. /// register
  23. /// @param username
  24. /// @param password
  25. /// @return Future<String>
  26. static Future<String> register(String username, String password) async {
  27. await Future.delayed(Duration(seconds: 2));
  28. return 'success';
  29. }
  30. }