wupengfei
2025-09-29 6b8101d9e2d6ca9d449a4087fbf065c6c31eec98
1
2
3
4
5
6
7
8
9
10
11
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** 此处后端没有提供注释 POST /api/common/sms/smsChengLiYeNotify */
export async function SmsChengLiYeNotify(options?: API.RequestConfig) {
  return request<API.FriendlyResultIActionResult>('/api/common/sms/smsChengLiYeNotify', {
    method: 'POST',
    ...(options || {}),
  });
}