interface LackMedicineReg { _id: ObjectId; accountId: string; corpId?: string; createTime: number; drugName: string; spec?: string; manufacturer?: string; insuranceCode?: string; images?: string[]; description?: string; patientName: string; patientId: string; phone: string; regType: 'outOfStock' | 'lowStock' | 'report'; // 缺货 lowStock 库存不足 outOfStock 患者自主登记 customerReport inventory: 'online' | 'store'; // online 线上购药 store 门店购药 }