Files
jinbooks/jinbooks-ui/src/api/system/apps-jwt.ts

32 lines
544 B
TypeScript
Raw Normal View History

2025-06-03 09:46:52 +08:00
import request from '@/utils/Request'
export function getAppsJwtInit(): any {
return request({
url: '/apps/jwt/init',
method: 'get'
})
}
export function getAppsJwt(id : any): any {
return request({
url: '/apps/jwt/get/' + id,
method: 'get'
})
}
export function addAppsJwt(data : any): any {
return request({
url: '/apps/jwt/add',
method: 'post',
data: data
})
}
export function updateAppsJwt(data : any): any {
return request({
url: '/apps/jwt/update',
method: 'put',
data: data
})
}