params.d.ts
667 字节
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
export interface PhoneCodeLoginParamsType {
phoneNum: string
code: string
}
export interface Send_prescription_formType {
/**
* 处方药
*/
drugList: DrugList[];
/**
* 问诊订单id
*/
id?: string;
/**
* 处方单金额
*/
prescriptionAmount: number;
/**
* 处方单文件
*/
prescriptionFile?: string;
/**
* 问诊病情描述
*/
prescriptionForm: string;
[property: string]: any;
}
export interface DrugList {
/**
* 单价
*/
amount: string;
/**
* 说明
*/
des: string;
/**
* 药物名称
*/
name: string;
/**
* 数量
*/
num: string;
[property: string]: any;
}