17 lines
505 B
TypeScript
17 lines
505 B
TypeScript
|
|
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 门店购药
|
||
|
|
}
|