You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
import { defHttp } from '@/utils/http/axios' |
|
|
|
export interface OAuth2ClientVO { |
|
id: number |
|
clientId: string |
|
secret: string |
|
name: string |
|
logo: string |
|
description: string |
|
status: number |
|
accessTokenValiditySeconds: number |
|
refreshTokenValiditySeconds: number |
|
redirectUris: string[] |
|
autoApprove: boolean |
|
authorizedGrantTypes: string[] |
|
scopes: string[] |
|
authorities: string[] |
|
resourceIds: string[] |
|
additionalInformation: string |
|
isAdditionalInformationJson: boolean |
|
createTime: Date |
|
} |
|
|
|
export interface OAuth2ClientPageReqVO extends PageParam { |
|
name?: string |
|
status?: number |
|
} |
|
// 查询 OAuth2列表 |
|
export const getOAuth2ClientPage = (params: OAuth2ClientPageReqVO) => { |
|
return defHttp.get({ url: '/system/oauth2-client/page', params }) |
|
} |
|
|
|
// 查询 OAuth2详情 |
|
export const getOAuth2Client = (id: number) => { |
|
return defHttp.get({ url: '/system/oauth2-client/get?id=' + id }) |
|
} |
|
|
|
// 新增 OAuth2 |
|
export const createOAuth2Client = (data: OAuth2ClientVO) => { |
|
return defHttp.post({ url: '/system/oauth2-client/create', data }) |
|
} |
|
|
|
// 修改 OAuth2 |
|
export const updateOAuth2Client = (data: OAuth2ClientVO) => { |
|
return defHttp.put({ url: '/system/oauth2-client/update', data }) |
|
} |
|
|
|
// 删除 OAuth2 |
|
export const deleteOAuth2Client = (id: number) => { |
|
return defHttp.delete({ url: '/system/oauth2-client/delete?id=' + id }) |
|
}
|
|
|