56 lines
1.0 KiB
TypeScript
56 lines
1.0 KiB
TypeScript
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;
|
|
}
|