36 lines
638 B
TypeScript
36 lines
638 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 药品库存
|
|
*/
|
|
export interface ClinicMedicineStock {
|
|
// 主键ID
|
|
id?: number;
|
|
// 药品
|
|
medicineId?: number;
|
|
// 库存数量
|
|
stockQuantity?: number;
|
|
// 最小库存预警
|
|
minStockLevel?: number;
|
|
// 上次更新时间
|
|
lastUpdated?: string;
|
|
// 买家用户ID
|
|
userId?: number;
|
|
// 备注
|
|
comments?: string;
|
|
// 商城ID
|
|
tenantId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 药品库存搜索条件
|
|
*/
|
|
export interface ClinicMedicineStockParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|