更新体检客户列表接口请求参数

This commit is contained in:
xianyi
2025-12-23 11:56:59 +08:00
parent c3ef051de6
commit 2fd1bfb4e8
2 changed files with 46 additions and 83 deletions

View File

@@ -115,17 +115,26 @@ export type RevenueStatisticsResponse = CommonActionResult<OutputRevenueStatisti
* 体检客户列表入参
*/
export interface InputPhysicalExamCustomerList {
/** 客户姓名 */
customer_name?: string | null;
/** 联系电话 */
phone?: string | null;
/** 身份证号 */
id_no?: string | null;
/**
* 筛选类型
* 1-全部 2-上午 3-下午 4-高客 5-普客 6-已登记 7-未登记 8-散客 9-团客
*/
filter_type?: number | null;
/** 查询文本(客户姓名、证件号码、联系电话、卡号) */
query_text?: string | null;
/** 是否全部 1-是 0-否) */
is_all: number;
/** 是否上午 1-是 0-否) */
is_morning: number;
/** 是否下午 1-是 0-否) */
is_afternoon: number;
/** 是否高客 1-是 0-否) */
is_high_customer: number;
/** 是否普客 1-是 0-否) */
is_general_customer: number;
/** 是否已登记 1-是 0-否) */
is_registered: number;
/** 是否未登记 1-是 0-否) */
is_not_registered: number;
/** 是否散客 1-是 0-否) */
is_individual_customer: number;
/** 是否团客 1-是 0-否) */
is_group_customer: number;
}
/**