17 lines
505 B
TypeScript
Raw Normal View History

2026-07-27 11:28:33 +08:00
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 门店购药
}