feat (generate-file): add generate file schema

This commit is contained in:
Abizrh
2025-11-19 23:46:21 +07:00
parent 6e34e175e7
commit cf4f5574d3
6 changed files with 74 additions and 10 deletions
+15
View File
@@ -0,0 +1,15 @@
import * as base from './_crud-base'
const path = '/api/v1/generate-file'
export function create(data: any) {
return base.create(path, data)
}
export function getList(params: any = null) {
return base.getList(path, params)
}
export function getDetail(id: number | string) {
return base.getDetail(path, id)
}