refactor: 重构项目结构,将Result类及相关工具类移动到dto和util包

将Result类从common包移动到dto包,ResultUtils类从common包移动到util包
调整所有相关文件的import语句以匹配新的包结构
新增CorsConfig配置类处理跨域请求
优化AuthController的登录接口返回统一响应格式
This commit is contained in:
qingfeng1121
2025-12-09 10:58:12 +08:00
parent 20f8a9d132
commit c5f631d043
66 changed files with 2495 additions and 73 deletions

View File

@@ -5,8 +5,8 @@
package com.qf.backend.service;
import com.qf.backend.common.Result;
import com.qf.backend.dto.LoginResponse;
import com.qf.backend.dto.Result;
/**
* 用户登录服务接口