单应用项目,可以创建很多独立工具类页面 ,不用登录 初始化的页面
zhangchen
2025-09-16 2a8070b96f4aec8059ea96935b9166aec75b188b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
export interface StartRecord {
  code: string;
  createTime: string; // "2025-09-12 17:06:42"
  createUser: string | null;
  deletedTime: string | null;
  doneByg: string;
  doneBygName: string;
  doneBygSpecName: string;
  doneGl: string;
  doneGlName: string;
  doneGlSpecName: string;
  id: number | null;
  isDeleted: number | null;
  monitorDataCode: string;
  recordCode: string;
  remark: string;
  schemeName: string;
  /** 穿刺方向 */
  startCcASideDirection: string;
  startCcNurse: string;
  startCcNurseName: string;
  /** 穿刺方式 */
  startCcType: string;
  startCcZhenA: string;
  startCcZhenAName: string;
  startCcZhenASpecName: string;
  startCcZhenType: string;
  startCcZhenV: string;
  startCcZhenVName: string;
  startCcZhenVSpecName: string;
  startEntranceType: string;
  startIsCcOrHy: number | null;
  startIsSave: number | null;
  startMedNurse: string;
  startMedNurseName: string;
  startTime: string | null;
  startTxqNo: string;
  startUpNurse: string;
  startUpNurseName: string;
  startUseHlb: string;
  startUseHlbName: string;
  startUseHlbSpecName: string;
  startUseNsy: string;
  startUseNsyName: string;
  startUseNsySpecName: string;
  startYcNurse: string;
  startYcNurseName: string;
  startYingxue: string;
  updateTime: string;
  updateUser: string | null;
}
 
export interface RecordData {
  code: string;
  createTime: string;
  createUser: string | null;
  deletedTime: string | null;
  endDownNurse: string;
  endDownNurseName: string;
  endHuixue: string;
  endTime: string;
  id: number | null;
  isDeleted: number | null;
  lastTimeMonitorDataTime: string;
  monitorDataCode: string;
  recordCode: string;
  remark: string;
  updateTime: string;
  updateUser: string | null;
}