| | |
| | | // @ts-ignore |
| | | import { request } from '@/utils/request'; |
| | | |
| | | /** 添加系统 模板数据参数字典 POST /api/Test/AddSystemTemplateDataParamSetting */ |
| | | export async function addSystemTemplateDataParamSetting( |
| | | body: API.AddSystemTemplateDataParamSettingInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<any>('/api/Test/AddSystemTemplateDataParamSetting', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 指定签约用户,发起签约,获取签约密钥,拉起签约页面 POST /api/Test/DataprepareCreate */ |
| | | export async function dataprepareCreate(options?: API.RequestConfig) { |
| | | return request<API.DataprepareCreateOutput>('/api/Test/DataprepareCreate', { |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 此处后端没有提供注释 GET /api/Test/TestAddLifePayRate */ |
| | | export async function testAddLifePayRate(options?: API.RequestConfig) { |
| | | return request<any>('/api/Test/TestAddLifePayRate', { |
| | | method: 'GET', |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 此处后端没有提供注释 GET /api/Test/TestEventBusSendPhoneMessge */ |
| | | export async function testEventBusSendPhoneMessge( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 此处后端没有提供注释 GET /api/Test/TestQRCodePay */ |
| | | export async function testQRCodePay( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | | params: API.APItestQRCodePayParams, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<string>('/api/Test/TestQRCodePay', { |
| | | method: 'GET', |
| | | params: { |
| | | ...params, |
| | | }, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 此处后端没有提供注释 GET /api/Test/TestRetturnResult */ |
| | | export async function testRetturnResult( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |