/* tslint:disable */
|
/* eslint-disable */
|
/**
|
* Admin.NET 通用权限开发平台
|
* 让 .NET 开发更简单、更通用、更流行。整合最新技术,模块插件式开发,前后端分离,开箱即用。<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
|
*
|
* OpenAPI spec version: 1.0.0
|
*
|
*
|
* NOTE: This class is auto generated by the swagger code generator program.
|
* https://github.com/swagger-api/swagger-codegen.git
|
* Do not edit the class manually.
|
*/
|
|
import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios';
|
import { Configuration } from '../configuration';
|
// Some imports not used depending on template conditions
|
// @ts-ignore
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
import { AddNoticeInput } from '../models';
|
import { AdminResultListSysNotice } from '../models';
|
import { AdminResultSqlSugarPagedListSysNotice } from '../models';
|
import { AdminResultSqlSugarPagedListSysNoticeUser } from '../models';
|
import { DeleteNoticeInput } from '../models';
|
import { NoticeInput } from '../models';
|
import { PageNoticeInput } from '../models';
|
import { UpdateNoticeInput } from '../models';
|
/**
|
* SysNoticeApi - axios parameter creator
|
* @export
|
*/
|
export const SysNoticeApiAxiosParamCreator = function (configuration?: Configuration) {
|
return {
|
/**
|
*
|
* @summary 增加通知公告 📢
|
* @param {AddNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysNoticeAddPost: async (body?: AddNoticeInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysNotice/add`;
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
let baseOptions;
|
if (configuration) {
|
baseOptions = configuration.baseOptions;
|
}
|
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
const localVarHeaderParameter = {} as any;
|
const localVarQueryParameter = {} as any;
|
|
// authentication Bearer required
|
// http bearer authentication required
|
if (configuration && configuration.accessToken) {
|
const accessToken = typeof configuration.accessToken === 'function'
|
? await configuration.accessToken()
|
: await configuration.accessToken;
|
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
}
|
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
const query = new URLSearchParams(localVarUrlObj.search);
|
for (const key in localVarQueryParameter) {
|
query.set(key, localVarQueryParameter[key]);
|
}
|
for (const key in options.params) {
|
query.set(key, options.params[key]);
|
}
|
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
return {
|
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
options: localVarRequestOptions,
|
};
|
},
|
/**
|
*
|
* @summary 删除通知公告 📢
|
* @param {DeleteNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysNoticeDeletePost: async (body?: DeleteNoticeInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysNotice/delete`;
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
let baseOptions;
|
if (configuration) {
|
baseOptions = configuration.baseOptions;
|
}
|
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
const localVarHeaderParameter = {} as any;
|
const localVarQueryParameter = {} as any;
|
|
// authentication Bearer required
|
// http bearer authentication required
|
if (configuration && configuration.accessToken) {
|
const accessToken = typeof configuration.accessToken === 'function'
|
? await configuration.accessToken()
|
: await configuration.accessToken;
|
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
}
|
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
const query = new URLSearchParams(localVarUrlObj.search);
|
for (const key in localVarQueryParameter) {
|
query.set(key, localVarQueryParameter[key]);
|
}
|
for (const key in options.params) {
|
query.set(key, options.params[key]);
|
}
|
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
return {
|
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
options: localVarRequestOptions,
|
};
|
},
|
/**
|
*
|
* @summary 获取通知公告分页列表 📢
|
* @param {PageNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysNoticePagePost: async (body?: PageNoticeInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysNotice/page`;
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
let baseOptions;
|
if (configuration) {
|
baseOptions = configuration.baseOptions;
|
}
|
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
const localVarHeaderParameter = {} as any;
|
const localVarQueryParameter = {} as any;
|
|
// authentication Bearer required
|
// http bearer authentication required
|
if (configuration && configuration.accessToken) {
|
const accessToken = typeof configuration.accessToken === 'function'
|
? await configuration.accessToken()
|
: await configuration.accessToken;
|
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
}
|
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
const query = new URLSearchParams(localVarUrlObj.search);
|
for (const key in localVarQueryParameter) {
|
query.set(key, localVarQueryParameter[key]);
|
}
|
for (const key in options.params) {
|
query.set(key, options.params[key]);
|
}
|
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
return {
|
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
options: localVarRequestOptions,
|
};
|
},
|
/**
|
*
|
* @summary 获取接收的通知公告
|
* @param {PageNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysNoticePageReceivedPost: async (body?: PageNoticeInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysNotice/pageReceived`;
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
let baseOptions;
|
if (configuration) {
|
baseOptions = configuration.baseOptions;
|
}
|
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
const localVarHeaderParameter = {} as any;
|
const localVarQueryParameter = {} as any;
|
|
// authentication Bearer required
|
// http bearer authentication required
|
if (configuration && configuration.accessToken) {
|
const accessToken = typeof configuration.accessToken === 'function'
|
? await configuration.accessToken()
|
: await configuration.accessToken;
|
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
}
|
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
const query = new URLSearchParams(localVarUrlObj.search);
|
for (const key in localVarQueryParameter) {
|
query.set(key, localVarQueryParameter[key]);
|
}
|
for (const key in options.params) {
|
query.set(key, options.params[key]);
|
}
|
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
return {
|
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
options: localVarRequestOptions,
|
};
|
},
|
/**
|
*
|
* @summary 发布通知公告 📢
|
* @param {NoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysNoticePublicPost: async (body?: NoticeInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysNotice/public`;
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
let baseOptions;
|
if (configuration) {
|
baseOptions = configuration.baseOptions;
|
}
|
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
const localVarHeaderParameter = {} as any;
|
const localVarQueryParameter = {} as any;
|
|
// authentication Bearer required
|
// http bearer authentication required
|
if (configuration && configuration.accessToken) {
|
const accessToken = typeof configuration.accessToken === 'function'
|
? await configuration.accessToken()
|
: await configuration.accessToken;
|
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
}
|
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
const query = new URLSearchParams(localVarUrlObj.search);
|
for (const key in localVarQueryParameter) {
|
query.set(key, localVarQueryParameter[key]);
|
}
|
for (const key in options.params) {
|
query.set(key, options.params[key]);
|
}
|
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
return {
|
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
options: localVarRequestOptions,
|
};
|
},
|
/**
|
*
|
* @summary 设置通知公告已读状态 📢
|
* @param {NoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysNoticeSetReadPost: async (body?: NoticeInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysNotice/setRead`;
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
let baseOptions;
|
if (configuration) {
|
baseOptions = configuration.baseOptions;
|
}
|
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
const localVarHeaderParameter = {} as any;
|
const localVarQueryParameter = {} as any;
|
|
// authentication Bearer required
|
// http bearer authentication required
|
if (configuration && configuration.accessToken) {
|
const accessToken = typeof configuration.accessToken === 'function'
|
? await configuration.accessToken()
|
: await configuration.accessToken;
|
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
}
|
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
const query = new URLSearchParams(localVarUrlObj.search);
|
for (const key in localVarQueryParameter) {
|
query.set(key, localVarQueryParameter[key]);
|
}
|
for (const key in options.params) {
|
query.set(key, options.params[key]);
|
}
|
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
return {
|
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
options: localVarRequestOptions,
|
};
|
},
|
/**
|
*
|
* @summary 获取未读的通知公告 📢
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysNoticeUnReadListGet: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysNotice/unReadList`;
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
let baseOptions;
|
if (configuration) {
|
baseOptions = configuration.baseOptions;
|
}
|
const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options};
|
const localVarHeaderParameter = {} as any;
|
const localVarQueryParameter = {} as any;
|
|
// authentication Bearer required
|
// http bearer authentication required
|
if (configuration && configuration.accessToken) {
|
const accessToken = typeof configuration.accessToken === 'function'
|
? await configuration.accessToken()
|
: await configuration.accessToken;
|
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
}
|
|
const query = new URLSearchParams(localVarUrlObj.search);
|
for (const key in localVarQueryParameter) {
|
query.set(key, localVarQueryParameter[key]);
|
}
|
for (const key in options.params) {
|
query.set(key, options.params[key]);
|
}
|
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
return {
|
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
options: localVarRequestOptions,
|
};
|
},
|
/**
|
*
|
* @summary 更新通知公告 📢
|
* @param {UpdateNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysNoticeUpdatePost: async (body?: UpdateNoticeInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysNotice/update`;
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
let baseOptions;
|
if (configuration) {
|
baseOptions = configuration.baseOptions;
|
}
|
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
const localVarHeaderParameter = {} as any;
|
const localVarQueryParameter = {} as any;
|
|
// authentication Bearer required
|
// http bearer authentication required
|
if (configuration && configuration.accessToken) {
|
const accessToken = typeof configuration.accessToken === 'function'
|
? await configuration.accessToken()
|
: await configuration.accessToken;
|
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
}
|
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
const query = new URLSearchParams(localVarUrlObj.search);
|
for (const key in localVarQueryParameter) {
|
query.set(key, localVarQueryParameter[key]);
|
}
|
for (const key in options.params) {
|
query.set(key, options.params[key]);
|
}
|
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
return {
|
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
options: localVarRequestOptions,
|
};
|
},
|
}
|
};
|
|
/**
|
* SysNoticeApi - functional programming interface
|
* @export
|
*/
|
export const SysNoticeApiFp = function(configuration?: Configuration) {
|
return {
|
/**
|
*
|
* @summary 增加通知公告 📢
|
* @param {AddNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticeAddPost(body?: AddNoticeInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysNoticeApiAxiosParamCreator(configuration).apiSysNoticeAddPost(body, options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
/**
|
*
|
* @summary 删除通知公告 📢
|
* @param {DeleteNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticeDeletePost(body?: DeleteNoticeInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysNoticeApiAxiosParamCreator(configuration).apiSysNoticeDeletePost(body, options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
/**
|
*
|
* @summary 获取通知公告分页列表 📢
|
* @param {PageNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticePagePost(body?: PageNoticeInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultSqlSugarPagedListSysNotice>>> {
|
const localVarAxiosArgs = await SysNoticeApiAxiosParamCreator(configuration).apiSysNoticePagePost(body, options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
/**
|
*
|
* @summary 获取接收的通知公告
|
* @param {PageNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticePageReceivedPost(body?: PageNoticeInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultSqlSugarPagedListSysNoticeUser>>> {
|
const localVarAxiosArgs = await SysNoticeApiAxiosParamCreator(configuration).apiSysNoticePageReceivedPost(body, options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
/**
|
*
|
* @summary 发布通知公告 📢
|
* @param {NoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticePublicPost(body?: NoticeInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysNoticeApiAxiosParamCreator(configuration).apiSysNoticePublicPost(body, options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
/**
|
*
|
* @summary 设置通知公告已读状态 📢
|
* @param {NoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticeSetReadPost(body?: NoticeInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysNoticeApiAxiosParamCreator(configuration).apiSysNoticeSetReadPost(body, options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
/**
|
*
|
* @summary 获取未读的通知公告 📢
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticeUnReadListGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultListSysNotice>>> {
|
const localVarAxiosArgs = await SysNoticeApiAxiosParamCreator(configuration).apiSysNoticeUnReadListGet(options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
/**
|
*
|
* @summary 更新通知公告 📢
|
* @param {UpdateNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticeUpdatePost(body?: UpdateNoticeInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysNoticeApiAxiosParamCreator(configuration).apiSysNoticeUpdatePost(body, options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
}
|
};
|
|
/**
|
* SysNoticeApi - factory interface
|
* @export
|
*/
|
export const SysNoticeApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
return {
|
/**
|
*
|
* @summary 增加通知公告 📢
|
* @param {AddNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticeAddPost(body?: AddNoticeInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysNoticeApiFp(configuration).apiSysNoticeAddPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 删除通知公告 📢
|
* @param {DeleteNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticeDeletePost(body?: DeleteNoticeInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysNoticeApiFp(configuration).apiSysNoticeDeletePost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 获取通知公告分页列表 📢
|
* @param {PageNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticePagePost(body?: PageNoticeInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultSqlSugarPagedListSysNotice>> {
|
return SysNoticeApiFp(configuration).apiSysNoticePagePost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 获取接收的通知公告
|
* @param {PageNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticePageReceivedPost(body?: PageNoticeInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultSqlSugarPagedListSysNoticeUser>> {
|
return SysNoticeApiFp(configuration).apiSysNoticePageReceivedPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 发布通知公告 📢
|
* @param {NoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticePublicPost(body?: NoticeInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysNoticeApiFp(configuration).apiSysNoticePublicPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 设置通知公告已读状态 📢
|
* @param {NoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticeSetReadPost(body?: NoticeInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysNoticeApiFp(configuration).apiSysNoticeSetReadPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 获取未读的通知公告 📢
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticeUnReadListGet(options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultListSysNotice>> {
|
return SysNoticeApiFp(configuration).apiSysNoticeUnReadListGet(options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 更新通知公告 📢
|
* @param {UpdateNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysNoticeUpdatePost(body?: UpdateNoticeInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysNoticeApiFp(configuration).apiSysNoticeUpdatePost(body, options).then((request) => request(axios, basePath));
|
},
|
};
|
};
|
|
/**
|
* SysNoticeApi - object-oriented interface
|
* @export
|
* @class SysNoticeApi
|
* @extends {BaseAPI}
|
*/
|
export class SysNoticeApi extends BaseAPI {
|
/**
|
*
|
* @summary 增加通知公告 📢
|
* @param {AddNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysNoticeApi
|
*/
|
public async apiSysNoticeAddPost(body?: AddNoticeInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysNoticeApiFp(this.configuration).apiSysNoticeAddPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 删除通知公告 📢
|
* @param {DeleteNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysNoticeApi
|
*/
|
public async apiSysNoticeDeletePost(body?: DeleteNoticeInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysNoticeApiFp(this.configuration).apiSysNoticeDeletePost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 获取通知公告分页列表 📢
|
* @param {PageNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysNoticeApi
|
*/
|
public async apiSysNoticePagePost(body?: PageNoticeInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultSqlSugarPagedListSysNotice>> {
|
return SysNoticeApiFp(this.configuration).apiSysNoticePagePost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 获取接收的通知公告
|
* @param {PageNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysNoticeApi
|
*/
|
public async apiSysNoticePageReceivedPost(body?: PageNoticeInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultSqlSugarPagedListSysNoticeUser>> {
|
return SysNoticeApiFp(this.configuration).apiSysNoticePageReceivedPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 发布通知公告 📢
|
* @param {NoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysNoticeApi
|
*/
|
public async apiSysNoticePublicPost(body?: NoticeInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysNoticeApiFp(this.configuration).apiSysNoticePublicPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 设置通知公告已读状态 📢
|
* @param {NoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysNoticeApi
|
*/
|
public async apiSysNoticeSetReadPost(body?: NoticeInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysNoticeApiFp(this.configuration).apiSysNoticeSetReadPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 获取未读的通知公告 📢
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysNoticeApi
|
*/
|
public async apiSysNoticeUnReadListGet(options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultListSysNotice>> {
|
return SysNoticeApiFp(this.configuration).apiSysNoticeUnReadListGet(options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 更新通知公告 📢
|
* @param {UpdateNoticeInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysNoticeApi
|
*/
|
public async apiSysNoticeUpdatePost(body?: UpdateNoticeInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysNoticeApiFp(this.configuration).apiSysNoticeUpdatePost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
}
|