2026-04-03 17:35:22 +08:00
|
|
|
/**
|
|
|
|
|
* 全局数据状态管理模块定义
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { defineNamespace } from "@cqsjjb/jjb-dva-runtime";
|
|
|
|
|
|
|
|
|
|
export const NS_GLOBAL = defineNamespace("global");
|
|
|
|
|
export const NS_STATISTICS = defineNamespace("statistics");
|
|
|
|
|
export const NS_EMERGENCY_EQUIPMENT = defineNamespace("emergencyEquipment");
|
|
|
|
|
export const NS_MATERIAL_EQUIPMENT = defineNamespace("materialEquipment");
|
|
|
|
|
export const NS_EMERGENCY_SHELTER = defineNamespace("emergencyShelter");
|
2026-04-08 09:13:57 +08:00
|
|
|
export const NS_FIREFIGHTING_EQUIPMENT = defineNamespace("firefightingEquipment");
|
2026-04-03 17:35:22 +08:00
|
|
|
export const NS_DRAINAGE_WELL = defineNamespace("drainageWell");
|
|
|
|
|
export const NS_CLOSED_CARD_PORT = defineNamespace("closedCardPort");
|
|
|
|
|
export const NS_EXPERT_EMERGENCY_RESCUE_TEAM = defineNamespace("expertEmergencyRescueTeam");
|
|
|
|
|
export const NS_EXPERT_EMERGENCY_RESCUE_EXPERT = defineNamespace("expertEmergencyRescueExpert");
|
|
|
|
|
export const NS_EXPERT_EMERGENCY_RESCUE_EXPERT_GROUP = defineNamespace("expertEmergencyRescueExpertGroup");
|
|
|
|
|
export const NS_EMERGENCY_ADDRESS_BOOK = defineNamespace("emergencyAddressBook");
|
|
|
|
|
export const NS_TRANSPORT_GUARANTEE_ORGANIZATION = defineNamespace("transportGuaranteeOrganization");
|
|
|
|
|
export const NS_MEDICAL_GUARANTEE_ORGANIZATION = defineNamespace("medicalGuaranteeOrganization");
|
|
|
|
|
export const NS_COMMUNICATION_GUARANTEE_ORGANIZATION = defineNamespace("communicationGuaranteeOrganization");
|
|
|
|
|
export const NS_TECHNICAL_SUPPORT_GUARANTEE_ORGANIZATION = defineNamespace("technicalSupportGuaranteeOrganization");
|
|
|
|
|
export const NS_ENTERPRISE_EMERGENCY_ORGANIZATION = defineNamespace("enterpriseEmergencyOrganization");
|
|
|
|
|
export const NS_ENTERPRISE_EMERGENCY_PERSONNEL = defineNamespace("enterpriseEmergencyPersonnel");
|
|
|
|
|
export const NS_EMERGENCY_RESCUE_TEAM = defineNamespace("emergencyRescueTeam");
|