zhengyiming
1 天以前 b42ca1e9ab197ce53828f4607610ae10f25965bb
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/common/wxmpUtils/sendWxmpSubscribMessage */
export async function sendWxmpSubscribMessage(
  body: API.SendWxmpSubscribMessageCommand,
  options?: API.RequestConfig
) {
  return request<string>('/api/common/wxmpUtils/sendWxmpSubscribMessage', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json-patch+json',
    },
    data: body,
    ...(options || {}),
  });
}