完善B1看板数据

This commit is contained in:
xianyi
2025-12-26 09:59:18 +08:00
parent 97eec39398
commit c46df45495
2 changed files with 22 additions and 19 deletions

View File

@@ -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;
}
/**