refactor(myapp): 重命名查询参数类以统一命名风格

- 将 ApplicationQueryParams 改为 ApplicationQueryParam
- 同步更新相关导入和函数参数类型注解
- 修改 PaginationQueryParams 为 PaginationQueryParam

refactor(demo): 重命名查询参数类以统一命名风格

- 将 DemoQueryParams 改为 DemoQueryParam
- 同步更新相关导入和函数参数类型注解
- 修改 PaginationQueryParams 为 PaginationQueryParam

refactor(gencode): 优化代码生成模块的模型和服务层结构

- 统一模型名称后缀为 Schema,调整相关引用
- 规范 Pydantic schema 的命名和定义
- 删除无用的 Python DAO 模板文件
- 调整导入路径,统一使用 app 目录下的模块路径
- 改进服务层方法签名,添加返回类型注解
- 使用自定义异常 CustomException 替代旧异常
- 统一成功响应格式为 SuccessResponse
- 优化代码生成服务中的数据库操作 DAO 调用参数传递
- 优化代码生成业务表和字段模型的字段定义,添加注释和默认值
- 优化生成代码路径处理逻辑和异常信息提示
- 整合分页查询参数定义,统一分页模型
- 修正多个服务方法的参数类型和返回类型
- 删除无用的导入和多余注释,提升代码整洁度
This commit is contained in:
zhangtao
2025-09-18 01:51:41 +08:00
parent 035efcd796
commit 019bfdf57b
69 changed files with 663 additions and 531 deletions
@@ -8,10 +8,10 @@ from app.common.response import SuccessResponse, StreamResponse
from app.utils.common_util import bytes2file_response
from app.core.router_class import OperationLogRoute
from app.core.dependencies import AuthPermission
from app.core.base_params import PaginationQueryParams
from app.core.base_params import PaginationQueryParam
from app.core.logger import logger
from ..auth.schema import AuthSchema
from .param import OperationLogQueryParams
from .param import OperationLogQueryParam
from .service import OperationLogService
@@ -20,8 +20,8 @@ LogRouter = APIRouter(route_class=OperationLogRoute, prefix="/log", tags=["日
@LogRouter.get("/list", summary="查询日志", description="查询日志")
async def get_obj_list_controller(
page: PaginationQueryParams = Depends(),
search: OperationLogQueryParams = Depends(),
page: PaginationQueryParam = Depends(),
search: OperationLogQueryParam = Depends(),
auth: AuthSchema = Depends(AuthPermission(permissions=["system:log:query"]))
) -> JSONResponse:
""" 查询日志 """
@@ -55,7 +55,7 @@ async def delete_obj_log_controller(
@LogRouter.post("/export", summary="导出日志", description="导出日志")
async def export_obj_list_controller(
search: OperationLogQueryParams = Depends(),
search: OperationLogQueryParam = Depends(),
auth: AuthSchema = Depends(AuthPermission(permissions=["system:log:export"]))
) -> StreamingResponse:
""" 导出日志 """
@@ -6,7 +6,7 @@ from datetime import datetime
from app.core.validator import DateTimeStr
class OperationLogQueryParams:
class OperationLogQueryParam:
"""操作日志查询参数"""
def __init__(
@@ -5,7 +5,7 @@ from typing import Any, Dict, List
from app.core.exceptions import CustomException
from app.utils.excel_util import ExcelUtil
from ..auth.schema import AuthSchema
from .param import OperationLogQueryParams
from .param import OperationLogQueryParam
from .crud import OperationLogCRUD
from .schema import (
OperationLogCreateSchema,
@@ -26,7 +26,7 @@ class OperationLogService:
return log_dict
@classmethod
async def get_log_list_service(cls, auth: AuthSchema, search: OperationLogQueryParams, order_by: List[Dict] = None) -> List[Dict]:
async def get_log_list_service(cls, auth: AuthSchema, search: OperationLogQueryParam, order_by: List[Dict] = None) -> List[Dict]:
"""获取日志列表"""
if order_by:
order_by = eval(order_by)