This commit is contained in:
jinbooks_dev
2025-06-03 09:46:52 +08:00
parent 3eee944c7d
commit 1e2b0fd9d4
1917 changed files with 156343 additions and 0 deletions

View File

@ -0,0 +1,18 @@
import request from '@/utils/Request'
export function getSecuritySmsprovider(): any {
return request({
url: '/security/smsprovider/get',
method: 'get'
})
}
export function updateSecuritySmsprovider(data : any): any {
return request({
url: '/security/smsprovider/update',
method: 'put',
data: data
})
}