|
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"` // 审批状态
|
|
}
|