import { ObjectId } from "mongodb"; interface Account { _id: ObjectId; // 数据库中的唯一标识符 mobile: string; // 账号 (支持手机号以及自定义) password: string; // 密码 anotherName: string; // 账号名 roleIds: string[]; // 角色ID列表 corpId: string; // 机构ID createTime: Date; // 创建时间 updateTime?: Date; // 更新时间 doctorNo?: string; // 医生编号 workNo?: string; // 药师编号 }