互动
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
1.0 KiB

package models
import (
"time"
)
//会务邀请函
type SeminarInvitePage struct {
Id int64 `json:"id"`
InvitePageImage string `json:"invite_page_image" description:"邀请涵图片"`
SelfFieldDefine string `json:"self_field_define" description:"自定义字段{'xx':xxx}"`
BeInviteName string `json:"be_invite_name" description:"被邀请的人的姓名"`
SeminarActivityId int64 `json:"seminar_activity_id" description:"会话活动的id"`
BeInvitePhone string `json:"be_invite_phone" description:"被邀请的人的手机号码"`
MoreArea int64 `json:"more_area" description:"多地区 开启则只有该地区可以使用 [开启|关闭]"`
AreaId int64 `json:"area_id" description:"该活动下的地区Id"`
IsDelete bool `json:"is_delete" xorm:"default(0)" description:"是否已经删除0未 1删"`
CreatedAt time.Time `json:"-" xorm:"created" description:"创建时间"`
UpdatedAt time.Time `json:"-" xorm:"updated" description:"更新时间"`
}