2025-11-17 17:14:02 +08:00
|
|
|
/**
|
|
|
|
|
* 全局数据状态管理模块定义
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { defineNamespace } from "@cqsjjb/jjb-dva-runtime";
|
|
|
|
|
|
|
|
|
|
export const NS_GLOBAL = defineNamespace("global");
|
2026-02-02 11:14:41 +08:00
|
|
|
export const NS_APPROVER_USER = defineNamespace("approverUser");
|
|
|
|
|
export const NS_FIRST_LEVEL_DOOR_INFO = defineNamespace("firstLevelDoorInfo");
|
|
|
|
|
export const NS_RELATED_PERSONNEL = defineNamespace("relatedPersonnel");
|
|
|
|
|
export const NS_SHARE_VEHICLES = defineNamespace("shareVehicles");
|
|
|
|
|
export const NS_RELATED_VEHICLES = defineNamespace("relatedVehicles");
|
|
|
|
|
export const NS_TEMPORARY_PERSONNEL = defineNamespace("temporaryPersonnel");
|
|
|
|
|
export const NS_TEMPORARY_VEHICLE = defineNamespace("temporaryVehicle");
|
|
|
|
|
export const NS_STOCK_PERSONNEL_AND_VEHICLES = defineNamespace("stockPersonnelAndVehicles");
|
|
|
|
|
export const NS_PERSONAL_VEHICLE = defineNamespace("personalVehicle");
|
|
|
|
|
export const NS_STOCK_VEHICLES = defineNamespace("stockVehicles");
|
|
|
|
|
export const NS_BRANCH_PERSONNEL_AND_VEHICLES = defineNamespace("branchPersonnelAndVehicles");
|
|
|
|
|
export const NS_STAKEHOLDER_PERSONNEL_AND_VEHICLES = defineNamespace("stakeholderPersonnelAndVehicles");
|
|
|
|
|
export const NS_PORT_BASED_UNITS_PERSONNEL_AND_VEHICLES = defineNamespace("portBasedUnitsPersonnelAndVehicles");
|
|
|
|
|
export const NS_INSPECT_DEPARTMENT_VEHICLES = defineNamespace("inspectDepartmentVehicles");
|
|
|
|
|
export const NS_VEHICLES_VIOLATION = defineNamespace("vehiclesViolation");
|
|
|
|
|
export const NS_VEHICLE_BLACKLIST = defineNamespace("vehicleBlacklist");
|
|
|
|
|
export const NS_PERSONNEL_PERMISSION_RECORDS = defineNamespace("personnelPermissionRecords");
|
|
|
|
|
export const NS_PERSONNEL_APPLICATION = defineNamespace("personnelApplication");
|
|
|
|
|
export const NS_VEHICLE_APPLICATION = defineNamespace("vehicleApplication");
|