Files
TrangleAgent/Backend/internal/model/do/subscribe.go
2026-01-18 18:20:40 +08:00

23 lines
849 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// Subscribe is the golang structure of table subscribe for DAO operations like Where/Data.
type Subscribe struct {
g.Meta `orm:"table:subscribe, do:true"`
Id any // 自增主键
UserId any // 用户ID关注者本人
FollowId any // 被关注的用户ID
Status any // 状态1=关注中 0=取消关注
Remark any // 备注名user_id 对 follow_id 的备注)
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}