| | |
| | | import { tryConvertToInt, deepClone } from "@/utils/utils"; |
| | | import { Local } from "@/utils/storage"; |
| | | import dayjs from "dayjs"; |
| | | import type { DeviceLoginRecord } from './user.type'; |
| | | export interface IotInfo { |
| | | 属性历史列表: any[]; |
| | | 床号: string; |
| | |
| | | 自定义配置项: Customconfiguration; |
| | | 服务端版本号: string; |
| | | 是否需要立即刷新: 0 | 1; |
| | | 当前登录状态: DeviceLoginRecord | null; |
| | | } |
| | | |
| | | interface Customconfiguration { |
| | |
| | | signedIn: defaultSignedIn(), // 已签到时需要的数据 |
| | | underTreatment: defaultUnderTreatment(), // 治疗中需要的数据 |
| | | sphygmomanometer: defaultSphygmomanometer(), // 血压计传过来的数据 |
| | | 患者出生日期: '', |
| | | }; |
| | | }; |
| | | |