service/dbstruct/streamer_acct.go

11 lines
455 B
Go
Raw Normal View History

2024-05-11 11:30:05 +08:00
package dbstruct
type EsStreamerAcct struct {
Mid int64 `json:"id"` // 用户表Id
Name string `json:"name"` // 用户名
UserIdString string `json:"user_id_string"` // string型user_id为模糊匹配设置
Ct int64 `json:"ct"` // 创建时间
Ut int64 `json:"ut"` // 更新时间
DelFlag int64 `json:"del_flag"` // 删除标记0-否1-是
}