You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sonic/model/dto/meta.go

10 lines
205 B
Go

2 years ago
package dto
type Meta struct {
2 years ago
ID int32 `json:"id"`
2 years ago
PostID int32 `json:"postId"`
Key string `json:"key"`
Value string `json:"value"`
CreateTime int64 `json:"createTime"`
}