13 lines
657 B
Go
13 lines
657 B
Go
package apollostruct
|
|
|
|
import "service/dbstruct"
|
|
|
|
type ReferentialZoneMoment struct {
|
|
Text *string `json:"text"` // 动态文字内容
|
|
MediaComp *dbstruct.MediaComponent `json:"media_component"` // 动态媒体内容
|
|
MType *int64 `json:"m_type"` // 媒体类型,见: MediaType*
|
|
Status *int64 `json:"status"` // 审批状态
|
|
MediaAmount *int64 `json:"media_amount"` // 媒体数量
|
|
MediaVisibleRange *int64 `json:"media_visible_range"` // 媒体可见数量
|
|
}
|