|
|
@ -15,7 +15,7 @@ type LiveConfig struct { |
|
|
|
LiveSwitch int `json:"live_switch" xorm:"not null default 0 comment('直播开关0关1开') INT(11)"` |
|
|
|
ActivityId int64 `json:"activity_id" xorm:"not null default 0 comment('互动id') INT(11)"` |
|
|
|
LiveRoomId string `json:"live_room_id" xorm:"not null default '' comment('直播间id') VARCHAR(128)"` |
|
|
|
AdaptationFunc string `json:"adaptation_func" xorm:"not null default '' comment('选中的适配功能及互动已买的服务id,json格式') VARCHAR(255)"` |
|
|
|
AdaptationFunc []interface{} `json:"adaptation_func" xorm:"json default '' comment('选中的适配功能及互动已买的服务id,json格式') VARCHAR(255)"` |
|
|
|
StartTime time.Time `json:"start_time" xorm:"not null default '1970-01-01 08:00:00' comment('开播时间') DATETIME"` |
|
|
|
EndTime time.Time `json:"end_time" xorm:"not null default '1970-01-01 08:00:00' comment('直播结束时间') DATETIME"` |
|
|
|
LiveH5Url string `json:"live_h5_url" xorm:"not null default '' comment('h5直播地址') VARCHAR(255)"` |
|
|
@ -34,6 +34,7 @@ type LiveConfig struct { |
|
|
|
Status int `json:"status" xorm:"not null default 1 comment('直播的状态1未开始2进行中3已结束') VARCHAR(255)"` |
|
|
|
Announcement string `json:"announcement" xorm:"not null default '' comment('公告内容') VARCHAR(255)"` |
|
|
|
WatchNum int `json:"watch_num" xorm:"not null default 0 comment('观看人数') BIGINT(11)"` |
|
|
|
LikeNum int `json:"like_num" xorm:"not null default 0 comment('点赞数') BIGINT(11)"` |
|
|
|
ImGroupId string `json:"im_group_id" xorm:"not null default '' comment('腾讯im聊天群id') VARCHAR(255)"` |
|
|
|
ImGroupName string `json:"im_group_name" xorm:"not null default '' comment('聊天群名称') VARCHAR(255)"` |
|
|
|
} |
|
|
@ -42,6 +43,10 @@ func (t *LiveConfig) TableName() string { |
|
|
|
return LiveConfigTN |
|
|
|
} |
|
|
|
|
|
|
|
func (t *LiveConfig) GetByActivityId(id interface{}) (bool, error) { |
|
|
|
return core.GetXormAuto().Where("is_delete=0 and activity_id=?", id).Get(t) |
|
|
|
func (t *LiveConfig) GetByActivityId(aid interface{}) (bool, error) { |
|
|
|
return core.GetXormAuto().Where("is_delete=0 and activity_id=?", aid).Get(t) |
|
|
|
} |
|
|
|
|
|
|
|
func (t *LiveConfig) Like(aid interface{}) (int64, error) { |
|
|
|
return core.GetXormAuto().Where("is_delete=0 and activity_id=?", aid).Incr("like_num").Update(t) |
|
|
|
} |