123456789101112131415161718192021222324 |
- <?php
- /**
- * @Name
- * @Description
- * @Author 刘学玺
- * @Date 2024/8/23 10:20
- */
- namespace App\Http\Services\Backend\Server\System;
- use App\Models\System\User;
- class AdminUserService
- {
- public static function getUserByUsername($username)
- {
- return User::query()->where('username', $username)->first();
- }
- public static function isPasswordMatch($password, $matchPassword)
- {
- }
- }
|