19 lines
519 B
Python
19 lines
519 B
Python
from typing import Any
|
|
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from app.core.base_crud import CRUDBase
|
|
from app.core.base_schema import AuthSchema
|
|
|
|
from .model import TreatmentModel
|
|
|
|
|
|
class BreedingTreatmentCRUD(CRUDBase[TreatmentModel, Any, Any]):
|
|
"""试验处理 CRUD —— 直接复用 CRUDBase(已自动注入数据权限过滤)。"""
|
|
|
|
def __init__(self, auth: AuthSchema, db: AsyncSession) -> None:
|
|
super().__init__(TreatmentModel, auth, db)
|
|
|
|
|
|
treatment_crud = BreedingTreatmentCRUD
|