56 lines
1.1 KiB
Plaintext
56 lines
1.1 KiB
Plaintext
export interface applyListCallBacl {
|
||
code:number,
|
||
msg:string,
|
||
data:applyListModel[],
|
||
message:string,
|
||
}
|
||
|
||
export interface applyHistoryCallBacl {
|
||
code:number,
|
||
msg:string,
|
||
data:historyObjectModel,
|
||
message:string,
|
||
}
|
||
|
||
export class applyListModel {
|
||
mobile?:string;
|
||
photo?:string;
|
||
birthDate?:string;
|
||
sex?:number;
|
||
realName?:string;
|
||
checkDate?:string;
|
||
uuid?:string;
|
||
createDate?:string;
|
||
patientUuid?:string;
|
||
expertUuid?:string;
|
||
status?:number;
|
||
content?:string;
|
||
nationName?:string;
|
||
provName?:string;
|
||
cityName?:string;
|
||
countyName?:string;
|
||
nation?:string;
|
||
note?:string
|
||
nickname?:string
|
||
groupType?:string
|
||
groupUuid?:string
|
||
}
|
||
|
||
export interface historyObjectModel {
|
||
list:historyModel[];
|
||
isFirstPage?:string;
|
||
isLastPage?:string;
|
||
pageNum?:string;
|
||
pages?:string;
|
||
pageSize?:string;
|
||
total?:string;
|
||
}
|
||
|
||
export class historyModel {
|
||
status?:string;//审核状态(1.待审核2.审核通过3.拒绝4.已过期 5.患者取消 6专家解除)
|
||
patient_photo?:string;
|
||
create_date?:string;
|
||
content?:string;
|
||
nickname?:string;
|
||
patient_name?:string;
|
||
} |