完善B1看板数据
This commit is contained in:
@@ -823,10 +823,14 @@ export type UserOwnedMenusResponse = CommonActionResult<OutputUserOwnedMenus>;
|
||||
* B1服务点信息
|
||||
*/
|
||||
export interface B1ServiceInfo {
|
||||
/** 科室代码 */
|
||||
dept_code?: string | null;
|
||||
/** 科室名称 */
|
||||
dept_name?: string | null;
|
||||
/** 医生名称 */
|
||||
doctor_name?: string | null;
|
||||
/** 已完成客户数 */
|
||||
completed_customer_count?: number | null;
|
||||
/** 已检部位数 */
|
||||
exam_part_count?: number | null;
|
||||
/** 总时长(分钟) */
|
||||
@@ -846,8 +850,14 @@ export interface InputB1ServiceBoard {
|
||||
* B1服务看板出参
|
||||
*/
|
||||
export interface OutputB1ServiceBoard {
|
||||
/** 总客户数 */
|
||||
total_customer_count?: number | null;
|
||||
/** 等待体检客户数 */
|
||||
waiting_exam_count?: number | null;
|
||||
/** 体检中客户数 */
|
||||
in_exam_count?: number | null;
|
||||
/** B1服务点信息列表 */
|
||||
b1_service_info_list: B1ServiceInfo[];
|
||||
b1_service_info_list?: B1ServiceInfo[] | null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user