from app.core.base_crud import CRUDBase from app.core.base_schema import AuthSchema from .model import EnergyReportTemplateModel from .schema import EnergyReportTemplateCreateSchema, EnergyReportTemplateUpdateSchema class EnergyReportTemplateCRUD(CRUDBase[EnergyReportTemplateModel, EnergyReportTemplateCreateSchema, EnergyReportTemplateUpdateSchema]): """能源报告模板数据层。""" def __init__(self, auth: AuthSchema) -> None: super().__init__(model=EnergyReportTemplateModel, auth=auth)