zhengyiming
2025-02-10 0f686ea1fe4700a909a6159efcf1fcb0e1f88a17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** 异步回调通知 POST /api/ThirdPartCallBack/BestSignCallBackNotice */
export async function bestSignCallBackNotice(
  body: API.SignCallBackNoticeEto,
  options?: API.RequestConfig
) {
  return request<any>('/api/ThirdPartCallBack/BestSignCallBackNotice', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 单笔转账到支付宝账户、单笔转账到银行卡、C2C现金红包、B2C现金红包单据状态变更后触发的通知 POST /api/ThirdPartCallBack/NotifyOrderChanged */
export async function notifyOrderChanged(options?: API.RequestConfig) {
  return request<any>('/api/ThirdPartCallBack/NotifyOrderChanged', {
    method: 'POST',
    ...(options || {}),
  });
}