- 添加 .dockerignore 和 .env.example 配置文件 - 添加 .gitignore 忽略规则配置 - 创建服务端代理API路由(_file、_modules、_server) - 集成 Ant Design Vue 组件库并配置SSR样式提取 - 定义API响应类型封装 - 创建基础布局组件(blank、console) - 实现应用中心页面和组件(AppsCenter) - 添加文章列表测试页面 - 配置控制台导航菜单结构 - 实现控制台头部组件 - 创建联系页面表单
50 lines
898 B
TypeScript
50 lines
898 B
TypeScript
import type { PageParam } from '@/api';
|
||
|
||
/**
|
||
* 处方明细表
|
||
|
||
*/
|
||
export interface ClinicPrescriptionItem {
|
||
// 自增ID
|
||
id?: number;
|
||
// 关联处方
|
||
prescriptionId?: number;
|
||
// 订单编号
|
||
prescriptionNo?: string;
|
||
// 关联药品
|
||
medicineId?: number;
|
||
// 剂量(如“10g”)
|
||
dosage?: string;
|
||
// 用法频率(如“每日三次”)
|
||
usageFrequency?: string;
|
||
// 服用天数
|
||
days?: number;
|
||
// 购买数量
|
||
amount?: number;
|
||
// 单价
|
||
unitPrice?: string;
|
||
// 数量
|
||
quantity?: number;
|
||
// 排序号
|
||
sortNumber?: number;
|
||
// 备注
|
||
comments?: string;
|
||
// 用户id
|
||
userId?: number;
|
||
// 租户id
|
||
tenantId?: number;
|
||
// 更新时间
|
||
updateTime?: string;
|
||
// 创建时间
|
||
createTime?: string;
|
||
}
|
||
|
||
/**
|
||
* 处方明细表
|
||
搜索条件
|
||
*/
|
||
export interface ClinicPrescriptionItemParam extends PageParam {
|
||
id?: number;
|
||
keywords?: string;
|
||
}
|