12 lines
296 B
TypeScript
Raw Normal View History

2026-07-27 11:28:33 +08:00
import { ObjectId } from "mongodb";
interface TimeData {
_id: ObjectId;
doctorId: string; // 医生id
doctorName: string; // 医生姓名
orderId: string; // 订单号
acceptDuration: number;// 接诊时长
rxDuration: number;// 开处方时长
createTime: Date; // 创建时间
}