添加获取签名接口

This commit is contained in:
xianyi
2026-01-07 13:42:04 +08:00
parent c23c0ff663
commit cece67f786
2 changed files with 55 additions and 0 deletions

View File

@@ -1180,3 +1180,44 @@ export interface OutputExpressContact {
*/
export type ReportSendAddressSaveResponse = CommonActionResult<OutputExpressContact>;
/**
* 获取客户体检同意书PDF导检单、知情同意书、加项单入参
*/
export interface InputTijianPdfFileInfo {
/** 体检ID */
exam_id: number;
}
/**
* 获取客户体检同意书PDF导检单、知情同意书、加项单出参
*/
export interface OutputTijianPdfFileInfo {
/** pdf类型1-导检单 2-知情同意书 3-加项单) */
pdf_type?: number | null;
/** pdf类型名称 */
pdf_type_name?: string | null;
/** PDF文件组合代码 */
combination_code?: number | null;
/** PDF文件名称 */
pdf_name?: string | null;
/** 原始PDF文件地址 */
pdf_url?: string | null;
/** 签名图片地址 */
sign_pic_url?: string | null;
/** 签名后的PDF文件地址 */
sign_pdf_url?: string | null;
/** 是否签名标识1-已签名 0-未签名) */
is_sign?: number | null;
/** 签名标识名称 */
is_sign_name?: string | null;
/** 是否支付1-未支付 2-已支付) */
is_pay?: number | null;
/** 是否支付名称 */
is_pay_name?: string | null;
}
/**
* 获取客户体检同意书PDF导检单、知情同意书、加项单响应
*/
export type TijianPdfFileGetResponse = CommonActionResult<OutputTijianPdfFileInfo[]>;