Files
2026-07-17 12:57:18 +03:00

112 lines
3.1 KiB
Python

from app.modules.auth.models import EmailVerificationToken, PasswordResetToken, RefreshToken
from app.modules.content.models import ContentPage
from app.modules.sync.models import (
Enterprise,
EnterpriseMember,
FarmHub,
HubCredential,
HubPairingSession,
ReportSyncState,
SyncAppliedEvent,
SyncConflict,
SyncCursor,
SyncEventLog,
SyncOutbox,
SyncReconcileRun,
SyncRecordState,
UserFarmAccess,
)
from app.modules.users.models import User, UserProfile
from app.modules.zootech.settings_models import ZootechFeedQualitySettings, ZootechOrgSettings
from app.modules.zootech.catalog_models import (
ZootechDailyComponentNormAdjustment,
ZootechDailyIngredientReplacement,
ZootechDailyIngredientSkip,
ZootechDailyTripSkip,
ZootechDailyUnloadingGroupSkip,
ZootechFeedDispenser,
ZootechFeedingLocation,
ZootechFeedingPeriod,
ZootechFeedingPoint,
ZootechFeedMixer,
ZootechPeriodRecipe,
ZootechSkladStock,
ZootechTrip,
ZootechUnloadingGroup,
)
from app.modules.zootech.models import ZootechComponent, ZootechIngredient, ZootechRecipe
from app.modules.zootech.lab_models import (
ZootechLabAnimalProfile,
ZootechLabComponentNutrientValue,
ZootechLabProfileNorm,
ZootechLabRacionNormyInfo,
ZootechLabRacionNormyMoskwa,
ZootechLabRacionNormyMoskwaMeta,
ZootechLabRacionNormyPiter,
ZootechLabRacionNormyPiterMeta,
ZootechLabRationCalcIndicator,
ZootechLabRationCalcTotal,
ZootechLabRationCompoundLine,
ZootechLabRationLine,
ZootechLabRecipeRation,
)
from app.modules.zootech.report_models import ZootechFeedAlert, ZootechLoadingReport, ZootechUnloadingReport
__all__ = [
"User",
"UserProfile",
"RefreshToken",
"PasswordResetToken",
"EmailVerificationToken",
"ContentPage",
"Enterprise",
"EnterpriseMember",
"FarmHub",
"UserFarmAccess",
"HubCredential",
"HubPairingSession",
"SyncOutbox",
"SyncEventLog",
"SyncAppliedEvent",
"SyncCursor",
"SyncRecordState",
"SyncConflict",
"SyncReconcileRun",
"ReportSyncState",
"ZootechComponent",
"ZootechRecipe",
"ZootechIngredient",
"ZootechUnloadingGroup",
"ZootechFeedMixer",
"ZootechFeedDispenser",
"ZootechFeedingLocation",
"ZootechFeedingPeriod",
"ZootechFeedingPoint",
"ZootechPeriodRecipe",
"ZootechTrip",
"ZootechSkladStock",
"ZootechDailyTripSkip",
"ZootechDailyIngredientSkip",
"ZootechDailyUnloadingGroupSkip",
"ZootechDailyIngredientReplacement",
"ZootechDailyComponentNormAdjustment",
"ZootechLoadingReport",
"ZootechUnloadingReport",
"ZootechFeedAlert",
"ZootechOrgSettings",
"ZootechFeedQualitySettings",
"ZootechLabAnimalProfile",
"ZootechLabProfileNorm",
"ZootechLabComponentNutrientValue",
"ZootechLabRecipeRation",
"ZootechLabRationLine",
"ZootechLabRationCalcIndicator",
"ZootechLabRationCalcTotal",
"ZootechLabRationCompoundLine",
"ZootechLabRacionNormyMoskwa",
"ZootechLabRacionNormyMoskwaMeta",
"ZootechLabRacionNormyPiter",
"ZootechLabRacionNormyPiterMeta",
"ZootechLabRacionNormyInfo",
]