ブログ一時保存

This commit is contained in:
simple321vip
2022-04-24 23:13:47 +08:00
parent e966d15e5e
commit 6e5d90d613
9 changed files with 306 additions and 99 deletions
+8 -7
View File
@@ -1,14 +1,15 @@
type Blog = {
blog_id: string,
blog_type_id: string,
blog_type_name: string,
blog_title: string,
blog_prex: string
bid: string,
btId: string,
btName: string,
title: string,
blog_prex: string,
content: string
}
type BlogType = {
blog_type_id: string,
blog_type_name: string,
btId: string,
btName: string,
blog_list: Blog[]
}