mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1022 B
50 lines
1022 B
2 years ago
|
// Copyright 2023 ROC. All rights reserved.
|
||
|
// Use of this source code is governed by a MIT style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package cs
|
||
|
|
||
|
const (
|
||
|
// 标签类型
|
||
|
TagTypeHot TagType = "hot"
|
||
|
TagTypeNew TagType = "new"
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
// TagType 标签类型
|
||
|
TagType string
|
||
|
|
||
|
// TagInfoList 标签信息列表
|
||
|
TagInfoList []*TagInfo
|
||
|
|
||
|
// TagList 标签列表
|
||
|
TagList []*TagItem
|
||
|
)
|
||
|
|
||
|
// TagInfo 标签信息
|
||
|
type TagInfo struct {
|
||
|
ID int64 `json:"id" db:"id"`
|
||
|
UserID int64 `json:"user_id" db:"user_id"`
|
||
|
Tag string `json:"tag"`
|
||
|
QuoteNum int64 `json:"quote_num" db:"quote_num"`
|
||
|
}
|
||
|
|
||
|
// TagItem 标签信息条陈
|
||
|
type TagItem struct {
|
||
|
ID int64 `json:"id"`
|
||
|
UserID int64 `json:"user_id"`
|
||
|
User *UserInfo `json:"user" db:"u"`
|
||
|
Tag string `json:"tag"`
|
||
|
QuoteNum int64 `json:"quote_num"`
|
||
|
}
|
||
|
|
||
|
func (t *TagInfo) Format() *TagItem {
|
||
|
return &TagItem{
|
||
|
ID: t.ID,
|
||
|
UserID: t.UserID,
|
||
|
User: &UserInfo{},
|
||
|
Tag: t.Tag,
|
||
|
QuoteNum: t.QuoteNum,
|
||
|
}
|
||
|
}
|