service/dbstruct/Raven_IQ_test_visit.go

10 lines
399 B
Go

package dbstruct
type RavenIQTestVisit struct {
Id *int64 `json:"id" bson:"_id"` // 瑞文智商测试访问表id
UserId *string `json:"user_id" bson:"user_id"` // 用户id
VType *int64 `json:"v_type" bson:"v_type"` // 访问类型
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
}