添加提交签名接口
This commit is contained in:
@@ -307,3 +307,32 @@ export interface OutputTongyishuInfo {
|
||||
*/
|
||||
export type TongyishuGetResponse = CommonActionResult<OutputTongyishuInfo>;
|
||||
|
||||
/**
|
||||
* 提交体检知情同意书签名入参
|
||||
*/
|
||||
export interface InputTongyishuSignSubmit {
|
||||
/** 体检ID */
|
||||
exam_id: number;
|
||||
/** PDF文件组合代码 */
|
||||
combination_code: number;
|
||||
/** 签名图片文件 */
|
||||
sign_file: File | Blob;
|
||||
}
|
||||
|
||||
/**
|
||||
* 提交体检知情同意书签名出参
|
||||
*/
|
||||
export interface OutputTongyishuSignInfo {
|
||||
/** 体检知情同意书文件组合代码 */
|
||||
combination_code?: string | null;
|
||||
/** 体检知情同意书PDF地址 */
|
||||
pdf_url?: string | null;
|
||||
/** 消息内容 */
|
||||
message?: string | null;
|
||||
}
|
||||
|
||||
/**
|
||||
* 提交体检知情同意书签名响应
|
||||
*/
|
||||
export type TongyishuSignSubmitResponse = CommonActionResult<OutputTongyishuSignInfo>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user