1
2
3
4
5
6
7
8
9
10
11
12
13
14
| export interface Task {
| /** 设备code */
| deviceCode: string;
| /** 透析单code */
| recordCode?: string;
| /** 任务提醒时间 */
| taskDate: string;
| /** 任务名称 */
| taskName: string;
| /** 是否过期 */
| overdue: boolean;
| /** 倒计时,如果存在该字段则表明是远程传过来的 */
| countdown?: number;
| }
|
|