2026-05-07 11:50:10 +08:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
2026-05-22 10:42:31 +08:00
|
|
|
from app.services.employee_seed_roles import ROLE_DEFINITIONS, ROLE_DISPLAY_ORDER, ROLE_PERMISSION_MAP
|
|
|
|
|
from app.services.employee_seed_organizations import EMPLOYEE_PROFILE_REPAIRS, ORGANIZATION_DEFINITIONS
|
|
|
|
|
from app.services.employee_seed_part1 import EMPLOYEE_DEFINITIONS_PART_1
|
|
|
|
|
from app.services.employee_seed_part2 import EMPLOYEE_DEFINITIONS_PART_2
|
2026-05-07 11:50:10 +08:00
|
|
|
|
2026-05-22 10:42:31 +08:00
|
|
|
EMPLOYEE_DEFINITIONS = EMPLOYEE_DEFINITIONS_PART_1 + EMPLOYEE_DEFINITIONS_PART_2
|
2026-05-20 14:21:56 +08:00
|
|
|
|
2026-05-22 10:42:31 +08:00
|
|
|
__all__ = [
|
|
|
|
|
"ROLE_DISPLAY_ORDER",
|
|
|
|
|
"ROLE_DEFINITIONS",
|
|
|
|
|
"ROLE_PERMISSION_MAP",
|
|
|
|
|
"ORGANIZATION_DEFINITIONS",
|
|
|
|
|
"EMPLOYEE_PROFILE_REPAIRS",
|
|
|
|
|
"EMPLOYEE_DEFINITIONS",
|
2026-05-07 11:50:10 +08:00
|
|
|
]
|