完成推理模块的转移

This commit is contained in:
2025-04-17 15:57:16 +08:00
parent 74e8f0d415
commit b0379e64c9
130 changed files with 14269 additions and 3201 deletions

View File

@ -0,0 +1,19 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# @version : 1.0
# @Create Time : 2025/04/03 10:30
# @File : project_detect_file.py
# @IDE : PyCharm
# @desc : 项目推理集合图片信息
from fastapi import Depends, Query
from core.dependencies import Paging, QueryParams
class ProjectDetectFileParams(QueryParams):
def __init__(
self,
detect_id: int | None = Query(0, title="推理集合id"),
params: Paging = Depends()):
super().__init__(params)
self.detect_id = detect_id