35 lines
692 B
TypeScript
35 lines
692 B
TypeScript
export interface caseFlowLogParams {
|
|
id?: string;
|
|
}
|
|
export interface droneCaseDealParams{
|
|
caseid?:string;
|
|
}
|
|
export interface flowLog {
|
|
name: string;
|
|
time: string;
|
|
user_name: string;
|
|
status: number;
|
|
state?:string;
|
|
}
|
|
export type flowLogModel = flowLog[];
|
|
|
|
export interface fileList{
|
|
filePath?:string | undefined;
|
|
s_filePath?:string;
|
|
}
|
|
export type fileListModel = fileList[];
|
|
|
|
export type droneCaseDealModel = {
|
|
video_list?: any;
|
|
pic_info_list?: any;
|
|
after_pic_list?: any;
|
|
remove_video_list?: any;
|
|
evidence_file_list?: any;
|
|
boundary_pic_list?: any;
|
|
punish_pic_list?: any;
|
|
payment_pic_list?: any;
|
|
agree_checkout_pic_list?: any;
|
|
checkout_pic_list?: any;
|
|
|
|
}
|