添加文章管理和文章分组页面

This commit is contained in:
Eamon
2026-06-09 16:37:40 +08:00
parent 9f74483345
commit d2c7846a91
24 changed files with 1908 additions and 32 deletions

View File

@@ -0,0 +1,8 @@
import type { Model } from "./base/model"
export type ArticleGroup = Model & {
code: string
name: string
sort: number
status: number
}