01ef3c9637
- 新建 api/schemas/:auth/agents/admin/ecosystem/investor/opc/operator/org/portals - models.py 移除 15 个 Pydantic DTO(保留 ORM 数据模型层) - 13 个路由内联 DTO 全部迁出,路由瘦身仅剩处理逻辑 - 全量 66 测试通过
30 lines
518 B
Python
30 lines
518 B
Python
from pydantic import BaseModel
|
|
|
|
class EnterpriseTaskCreate(BaseModel):
|
|
title: str
|
|
category: str = ""
|
|
sub_category: str = ""
|
|
description: str = ""
|
|
mode: str = "grab"
|
|
budget_min: int = 0
|
|
budget_max: int = 0
|
|
deadline: str = ""
|
|
publisher_name: str = ""
|
|
|
|
|
|
|
|
class TaskReviewRequest(BaseModel):
|
|
action: str # accept | reject
|
|
comment: str = ""
|
|
|
|
|
|
|
|
class ReferralCreate(BaseModel):
|
|
provider_id: str = ""
|
|
provider_name: str = ""
|
|
opc_id: str = ""
|
|
opc_name: str = ""
|
|
|
|
|
|
|