12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
import { ObjectId } from "mongodb";
|
|
|
|
interface TimeData {
|
|
_id: ObjectId;
|
|
doctorId: string; // 医生id
|
|
doctorName: string; // 医生姓名
|
|
orderId: string; // 订单号
|
|
acceptDuration: number;// 接诊时长
|
|
rxDuration: number;// 开处方时长
|
|
createTime: Date; // 创建时间
|
|
}
|