service/dbstruct/userwxaddcheck.go

16 lines
755 B
Go

package dbstruct
type UserWxAddCheck struct {
Id *int64 `json:"id" bson:"_id"` // 用户添加微信审核表id
SubMid *int64 `json:"sub_mid" bson:"sub_mid"` // 主语mid(用户)
ObjMid *int64 `json:"obj_mid" bson:"obj_mid"` // 宾语mid(主播)
WxId *string `json:"wx_id" bson:"wx_id"` // 用户微信id
WxInfo *string `json:"wx_info" bson:"wx_info"` // 用户微信相关信息
Status *int64 `json:"status" bson:"status"` // 审核结果
Remarks *string `json:"remarks" bson:"remarks"` // 备注
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
}