97 lines
4.6 KiB
Go
97 lines
4.6 KiB
Go
package dbstruct
|
||
|
||
type ZoneMoment struct {
|
||
Id *int64 `json:"id" bson:"_id"` // 私密圈动态表id
|
||
Mid *int64 `json:"mid" bson:"mid"` // 用户表id
|
||
Zid *int64 `json:"zid" bson:"zid"` // 所属空间id
|
||
CType *int64 `json:"c_type" bson:"c_type"` // 动态付费类型,0-免费贴,1-付费贴
|
||
IsIronfanVisible *int64 `json:"is_ironfan_visible" bson:"is_ironfan_visible"` // 铁粉是否可以免费看
|
||
Text *string `json:"text" bson:"text"` // 动态文字内容
|
||
MediaComp *MediaComponent `json:"media_component" bson:"media_component"` // 动态媒体内容
|
||
MType *int64 `json:"m_type" bson:"m_type"` // 媒体类型,见: MediaType*
|
||
TextVisibleRange *int64 `json:"text_visible_range" bson:"text_visible_range"` // 动态文字可见范围,单位行
|
||
MediaVisibleRange *int64 `json:"media_visible_range" bson:"media_visible_range"` // 动态媒体可见范围,单位媒体个数
|
||
IsBlurringCover *int64 `json:"is_blurring_cover" bson:"is_blurring_cover"` // 是否模糊封面
|
||
TextAmount *int64 `json:"text_amount" bson:"text_amount"` // 动态文字总行
|
||
MediaAmount *int64 `json:"media_amount" bson:"media_amount"` // 媒体总个数
|
||
Price *int64 `json:"price" bson:"price"` // 单帖价格,单位人民币分
|
||
ProductId *int64 `json:"product_id" bson:"product_id"` // 商品id(单帖商品或超粉商品id)
|
||
ThumbsUpNum *int64 `json:"thumbs_up_num" bson:"thumbs_up_num"` // 点赞次数
|
||
Status *int64 `json:"status" bson:"status"` // 审批状态
|
||
ImageAuditStatus *int64 `json:"image_audit_status" bson:"image_audit_status"` // 媒体审核状态
|
||
TextAuditStatus *int64 `json:"text_audit_status" bson:"text_audit_status"` // 文字审核状态
|
||
ManuallyReviewStatus *int64 `json:"manually_review_status" bson:"manually_review_status"` // 人工复审状态
|
||
ImageAuditOpinion *string `json:"image_audit_opinion" bson:"image_audit_opinion"` // 媒体审核意见
|
||
TextAuditOpinion *string `json:"text_audit_opinion" bson:"text_audit_opinion"` // 文字审核意见
|
||
ManuallyReviewOpinion *string `json:"manually_review_opinion" bson:"manually_review_opinion"` // 人工复审意见
|
||
ManuallyReviewOperator *int64 `json:"manually_review_operator" bson:"manually_review_operator"` // 人工复审操作人
|
||
IsHeaded *int64 `json:"is_headed" bson:"is_headed"` // 是否已置顶
|
||
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
|
||
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
|
||
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
|
||
|
||
}
|
||
|
||
func (p *ZoneMoment) GetId() int64 {
|
||
if p != nil && p.Id != nil {
|
||
return *p.Id
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (p *ZoneMoment) GetMid() int64 {
|
||
if p != nil && p.Mid != nil {
|
||
return *p.Mid
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (p *ZoneMoment) GetZid() int64 {
|
||
if p != nil && p.Zid != nil {
|
||
return *p.Zid
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (p *ZoneMoment) GetMType() int64 {
|
||
if p != nil && p.MType != nil {
|
||
return *p.MType
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (p *ZoneMoment) GetCType() int64 {
|
||
if p != nil && p.CType != nil {
|
||
return *p.CType
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (p *ZoneMoment) GetMediaVisibleRange() int64 {
|
||
if p != nil && p.MediaVisibleRange != nil {
|
||
return *p.MediaVisibleRange
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (p *ZoneMoment) GetIsIronfanVisible() int64 {
|
||
if p != nil && p.IsIronfanVisible != nil {
|
||
return *p.IsIronfanVisible
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (p *ZoneMoment) GetUt() int64 {
|
||
if p != nil && p.Ut != nil {
|
||
return *p.Ut
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (p *ZoneMoment) GetStatus() int64 {
|
||
if p != nil && p.Status != nil {
|
||
return *p.Status
|
||
}
|
||
return 0
|
||
}
|