wupengfei
9 小时以前 0ae2f2f277c9a20648e2b53a804b443e412b523a
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,