zhengyiming
5 天以前 8801557b82facd8c7a8d5fb2ec8a3ace8bc557ca
src/services/api/sms.ts
@@ -26,6 +26,21 @@
  });
}
/** 阿里云短信平台回传通知 POST /api/common/sms/smsAliyunNotify */
export async function smsAliyunNotify(
  body: API.SmsAliyunNotifyCommandItem[],
  options?: API.RequestConfig
) {
  return request<API.SmsAliyunNotifyCommandResult>('/api/common/sms/smsAliyunNotify', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json-patch+json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 诚立业短信平台回传通知 POST /api/common/sms/smsChengLiYeNotify */
export async function smsChengLiYeNotify(
  body: API.SmsChengLiYeNotifyCommand,