更新加项pdf接口

This commit is contained in:
xianyi
2026-01-09 11:22:26 +08:00
parent b877a13aa2
commit 8df95d2104
3 changed files with 22 additions and 14 deletions

View File

@@ -410,20 +410,28 @@ export interface InputAddItemBillInfo {
CombinationCode: string;
}
/**
* 加项单PDF文件信息
*/
export interface OutputAddItemBillFileInfo {
/** 加项单编号 */
pdf_sort?: number | null;
/** PDF文件名称 */
pdf_name: string;
/** 支付状态1-未支付 2-已支付) */
payment_status: string;
/** 支付状态名称 (1-未支付 2-已支付) */
payment_status_name: string;
/** PDF文件地址 */
pdf_url: string;
}
/**
* 获取体检加项单PDF出参
*/
export interface OutputAddItemBillInfo {
/** 加项单编号 */
pdf_sort?: number | null;
/** 支付状态 (1-未支付 2-已支付) */
payment_status?: string | null;
/** 支付状态名称 (1-未支付 2-已支付) */
payment_status_name?: string | null;
/** 加项单文件名称 */
pdf_name?: string | null;
/** PDF文件地址 */
pdf_url?: string | null;
/** 加项单PDF信息列表 */
listPdfInfo: OutputAddItemBillFileInfo[];
/** 消息内容 */
message?: string | null;
}