/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template */ package com.qf.backend.service; import com.qf.backend.dto.LoginResponse; import com.qf.backend.dto.Result; /** * 用户登录服务接口 */ public interface UserLoginService { /** * 用户登录 * @param username 用户名 * @param password 密码 * @return 登录结果,包含登录状态、token等信息 */ Result login(String username, String password); }