mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-04 00:06:22 +00:00
17 lines
509 B
Go
17 lines
509 B
Go
package dto
|
|
|
|
type PostDto struct {
|
|
UserID uint `json:"user_id"` // 发布者的用户ID
|
|
Title string `json:"title"` // 帖子标题
|
|
Content string `json:"content"`
|
|
Labels []LabelDto `json:"labels"` // 关联的标签
|
|
IsPrivate bool `json:"is_private"` // 是否为私密帖子
|
|
}
|
|
|
|
type CreatePostReq struct {
|
|
Title string `json:"title"`
|
|
Content string `json:"content"`
|
|
Labels []LabelDto `json:"labels"`
|
|
IsPrivate bool `json:"is_private"`
|
|
}
|