wupengfei
2025-04-11 ae671e401db4b158b6bd4292fb99fab58e40844c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** 信任签异步通知 POST /api/AlipayEcsignNotify/SignorderNotify */
export async function signorderNotify(
  body: API.AlipayEcsignNotifyInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/AlipayEcsignNotify/SignorderNotify', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}