添加获取签名接口
This commit is contained in:
@@ -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[]>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user