websocketEnum.ts 573 B

123456789101112131415161718
  1. export enum WebScoketIdEnum {
  2. // 输注监护变化
  3. PATIENT_MONITOR = 'patient-monitor',
  4. // 输注监护数量(状态)
  5. MONITOR_STATE_COUNT = 'monitor-state-count',
  6. // 输注监护数量(时间)
  7. MONITOR_TIME_COUNT = 'monitor-time-count',
  8. // 当用户修改 住院号 格式化配置后
  9. PATIENT_UPDATE = 'patient-update',
  10. // 病人临床同时绑定了多个泵, 泵重复
  11. DEVICE_REPEAT = 'device-repeat',
  12. // 无泵
  13. DEVICE_NONE = 'device-none',
  14. // 总数监控
  15. MONITOR_TOTAL_COUNT = 'monitor-total-count',
  16. // 取消所有订阅
  17. ALL = 'all',
  18. }