2023-12-21 22:17:40 +08:00
|
|
|
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 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序列号
|
|
|
|
}
|
|
|
|
|
2023-12-23 22:03:53 +08:00
|
|
|
type ContactCustomerServiceSessionIdSeq struct {
|
|
|
|
Seq int64 //联系客服对话ID序列号
|
|
|
|
}
|
|
|
|
|
2023-12-28 18:20:53 +08:00
|
|
|
type FeedbackIdSeq struct {
|
|
|
|
Seq int64 //动态Id序列号
|
|
|
|
}
|
|
|
|
|
2023-12-21 22:17:40 +08:00
|
|
|
type MediaIdSeq struct {
|
|
|
|
Seq int64 `json:"seq" bson:"seq"`
|
|
|
|
}
|
2024-03-12 12:06:45 +08:00
|
|
|
|
|
|
|
type AccountPunishmentIdSeq struct {
|
|
|
|
Seq int64 //用户Id序列号
|
|
|
|
}
|
2024-03-20 10:06:26 +08:00
|
|
|
|
|
|
|
type ZoneIdSeq struct {
|
|
|
|
Seq int64 //用户Id序列号
|
|
|
|
}
|
2024-04-08 20:05:13 +08:00
|
|
|
|
2024-03-21 23:26:23 +08:00
|
|
|
type ZoneMomentIdSeq struct {
|
|
|
|
Seq int64 //用户Id序列号
|
|
|
|
}
|
2024-04-08 20:05:13 +08:00
|
|
|
|
|
|
|
type ZoneCollaboratorIdSeq struct {
|
|
|
|
Seq int64 //用户Id序列号
|
|
|
|
}
|
2024-05-22 17:14:20 +08:00
|
|
|
|
|
|
|
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"` //视频审核批次号
|
|
|
|
}
|