by Robin at 20240511

This commit is contained in:
Leufolium 2024-05-11 11:30:05 +08:00
parent 2c9e1cdb91
commit 7064b771e2
1 changed files with 10 additions and 0 deletions

10
dbstruct/streamer_acct.go Normal file
View File

@ -0,0 +1,10 @@
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-是
}