feat: vxe demo

This commit is contained in:
xingyu4j
2022-11-01 14:36:18 +08:00
parent 2e2cd448bd
commit 220e0316e0
4 changed files with 504 additions and 139 deletions

View File

@ -1,5 +1,5 @@
export type PostVO = {
id: number
id?: number
name: string
code: string
sort: number
@ -11,11 +11,13 @@ export type PostVO = {
export type PostPageReqVO = {
code: string
name: string
status: number
status?: number
pageSize?: number
pageNo?: number
}
export type PostExportReqVO = {
code: string
name: string
status: number
status?: number
}