mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 10:36:31 +08:00
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
import { BaseController } from '@/api/BaseController';
|
|
import { RequestOption } from '@/common/http/types';
|
|
import { ANY_OBJECT } from '@/types/generic';
|
|
import { TableData } from '@/common/types/table';
|
|
import { API_CONTEXT } from '../config';
|
|
|
|
export default class OnlineDatasourceRelationController extends BaseController {
|
|
static list(params: ANY_OBJECT, httpOptions?: RequestOption) {
|
|
return super.post<TableData<ANY_OBJECT>>(
|
|
API_CONTEXT + '/online/onlineDatasourceRelation/list',
|
|
params,
|
|
httpOptions,
|
|
);
|
|
}
|
|
|
|
static view(params: ANY_OBJECT, httpOptions?: RequestOption) {
|
|
return super.get<ANY_OBJECT>(
|
|
API_CONTEXT + '/online/onlineDatasourceRelation/view',
|
|
params,
|
|
httpOptions,
|
|
);
|
|
}
|
|
|
|
// static export(sender, params, fileName) {
|
|
// return sender.download(API_CONTEXT + '/online/onlineDatasourceRelation/export', params, fileName);
|
|
// }
|
|
|
|
static add(params: ANY_OBJECT, httpOptions?: RequestOption) {
|
|
return super.post(API_CONTEXT + '/online/onlineDatasourceRelation/add', params, httpOptions);
|
|
}
|
|
|
|
static update(params: ANY_OBJECT, httpOptions?: RequestOption) {
|
|
return super.post(API_CONTEXT + '/online/onlineDatasourceRelation/update', params, httpOptions);
|
|
}
|
|
|
|
static delete(params: ANY_OBJECT, httpOptions?: RequestOption) {
|
|
return super.post(API_CONTEXT + '/online/onlineDatasourceRelation/delete', params, httpOptions);
|
|
}
|
|
}
|