service/dbstruct/idSeq.go

95 lines
1.9 KiB
Go

package dbstruct
type UserIdSeq struct {
Seq int64 //用户业务id序列号
}
type UserIdMap struct {
Seq int64 `json:"seq" bson:"_id"` //用户业务id序列号
UserId int64 `json:"user_id" bson:"user_id"` //映射后用户业务id序列号
}
type AccountIdSeq struct {
Seq int64 //用户Id序列号
}
type MomentIdSeq struct {
Seq int64 //动态Id序列号
}
type StreamerAuthApprovalIdSeq struct {
Seq int64 //女神认证Id序列号
}
type StreamerAuthApprovalBasicIdSeq struct {
Seq int64 //女神认证入站Id序列号
}
type StreamerAuthApprovalDetailsIdSeq struct {
Seq int64 //女神认证完善Id序列号
}
type AccountRelationIdSeq struct {
Seq int64 //用户关系Id序列号
}
type StreamerLinkIdSeq struct {
Seq int64 //主播链接Id序列号
}
type UserWxAddCheckIdSeq struct {
Seq int64 //用户微信添加审核Id序列号
}
type RealNameAuthenticationIdSeq struct {
Seq int64 //实名认证ID序列号
}
type ContactCustomerServiceIdSeq struct {
Seq int64 //联系客服ID序列号
}
type ContactCustomerServiceSessionIdSeq struct {
Seq int64 //联系客服对话ID序列号
}
type FeedbackIdSeq struct {
Seq int64 //动态Id序列号
}
type MediaIdSeq struct {
Seq int64 `json:"seq" bson:"seq"`
}
type AccountPunishmentIdSeq struct {
Seq int64 //用户Id序列号
}
type ZoneIdSeq struct {
Seq int64 //用户Id序列号
}
type ZoneMomentIdSeq struct {
Seq int64 //用户Id序列号
}
type ZoneCollaboratorIdSeq struct {
Seq int64 //用户Id序列号
}
type ImageAuditBatchId struct {
BatchId string `json:"batch_id" bson:"batch_id"` //图像审核批次号
}
type TextAuditBatchId struct {
BatchId string `json:"batch_id" bson:"batch_id"` //文字审核批次号
}
type VideoModerationBatchId struct {
BatchId string `json:"batch_id" bson:"batch_id"` //视频审核批次号
}
type RavenIQTestIdSeq struct {
Seq int64 //用户Id序列号
}