feat(clinic): 新增诊所相关模块API接口
- 新增挂号模块,包括分页查询、列表查询、添加、修改、删除及批量删除功能 - 新增医生入驻申请模块,包含完整的CRUD操作接口- 新增医疗记录模块,支持分页及列表查询、增删改查功能 - 新增分销商用户记录表模块,提供完整的数据管理接口- 新增病例模块,实现分页查询、列表查询及数据操作功能 - 新增药品库模块,支持药品信息的增删改查及分页查询- 新增出入库模块,提供完整的库存变动记录管理接口 - 新增药品库存模块,包含库存信息的查询、添加、修改及删除功能 - 新增处方订单模块,实现订单信息的全面管理接口
This commit is contained in:
55
src/api/clinic/clinicDoctorUser/model/index.ts
Normal file
55
src/api/clinic/clinicDoctorUser/model/index.ts
Normal file
@@ -0,0 +1,55 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 分销商用户记录表
|
||||
*/
|
||||
export interface ClinicDoctorUser {
|
||||
// 主键ID
|
||||
id?: number;
|
||||
// 类型 0经销商 1企业 2集团
|
||||
type?: number;
|
||||
// 自增ID
|
||||
userId?: number;
|
||||
// 姓名
|
||||
realName?: string;
|
||||
// 手机号
|
||||
phone?: string;
|
||||
// 部门
|
||||
departmentId?: number;
|
||||
// 专业领域
|
||||
specialty?: string;
|
||||
// 职务级别
|
||||
position?: string;
|
||||
// 执业资格
|
||||
qualification?: string;
|
||||
// 医生简介
|
||||
introduction?: string;
|
||||
// 挂号费
|
||||
consultationFee?: string;
|
||||
// 工作年限
|
||||
workYears?: number;
|
||||
// 问诊人数
|
||||
consultationCount?: number;
|
||||
// 专属二维码
|
||||
qrcode?: string;
|
||||
// 备注
|
||||
comments?: string;
|
||||
// 排序号
|
||||
sortNumber?: number;
|
||||
// 是否删除
|
||||
isDelete?: number;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
// 创建时间
|
||||
createTime?: string;
|
||||
// 修改时间
|
||||
updateTime?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 分销商用户记录表搜索条件
|
||||
*/
|
||||
export interface ClinicDoctorUserParam extends PageParam {
|
||||
id?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user