添加搜索体检加项接口
This commit is contained in:
@@ -358,3 +358,34 @@ export interface OutputCustomerDetailEdit {
|
||||
*/
|
||||
export type CustomerDetailEditResponse = CommonActionResult<OutputCustomerDetailEdit>;
|
||||
|
||||
/**
|
||||
* 体检加项列表信息入参
|
||||
*/
|
||||
export interface InputPhysicalExamAddItem {
|
||||
/** 项目名称(必填,空字符串表示获取全部) */
|
||||
item_name: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 体检加项列表信息出参
|
||||
*/
|
||||
export interface OutputPhysicalExamAddItem {
|
||||
/** 项目ID */
|
||||
item_id?: number | null;
|
||||
/** 项目名称 */
|
||||
item_name?: string | null;
|
||||
/** 实收金额 */
|
||||
actual_received_amount?: number | null;
|
||||
/** 原价 */
|
||||
original_price?: number | null;
|
||||
/** 折扣率(含折扣单位,如8.0折) */
|
||||
discount_rate?: string | null;
|
||||
/** 次数 */
|
||||
times?: number | null;
|
||||
}
|
||||
|
||||
/**
|
||||
* 体检加项列表信息响应
|
||||
*/
|
||||
export type PhysicalExamAddItemListResponse = CommonActionResult<OutputPhysicalExamAddItem[]>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user