更新接口

This commit is contained in:
xianyi
2026-01-06 14:47:05 +08:00
parent 971c342d9a
commit f17f9774ac
2 changed files with 19 additions and 1 deletions

View File

@@ -406,12 +406,20 @@ export type DaojiandanSignSubmitResponse = CommonActionResult<OutputDaojiandanSi
export interface InputAddItemBillInfo {
/** 体检ID */
exam_id: number;
/** 加项组合代码多个加项项目用逗号拼接例如123,456 */
CombinationCode: 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文件地址 */
@@ -431,6 +439,10 @@ export type AddItemBillGetResponse = CommonActionResult<OutputAddItemBillInfo>;
export interface InputAddItemBillSignSubmit {
/** 体检ID */
exam_id: number;
/** PDF加项单序号 */
pdf_sort: number;
/** 加项组合代码多个加项项目用逗号拼接例如123,456 */
combinationCode: string;
/** 签名图片文件 */
sign_file: File | Blob;
}
@@ -439,6 +451,10 @@ export interface InputAddItemBillSignSubmit {
* 提交体检加项单签名出参
*/
export interface OutputAddItemBillSignInfo {
/** 支付状态 (1-未支付 2-已支付) */
payment_status?: string | null;
/** 支付状态名称 (1-未支付 2-已支付) */
payment_status_name?: string | null;
/** 加项单文件名称 */
pdf_name?: string | null;
/** PDF文件地址 */