|
@@ -7,7 +7,7 @@ import (
|
|
|
)
|
|
|
|
|
|
type Report struct {
|
|
|
- Id uint `gorm:"primaryKey;column:id" json:"id"`
|
|
|
+ Id uint `gorm:"primaryKey;column:id" json:"id"`
|
|
|
AddType int8 `gorm:"column:add_type" json:"add_type"`
|
|
|
ClassifyIdFirst int `gorm:"column:classify_id_first" json:"classify_id_first"`
|
|
|
ClassifyNameFirst string `gorm:"column:classify_name_first" json:"classify_name_first"`
|
|
@@ -30,9 +30,10 @@ type Report struct {
|
|
|
ReportCode string `gorm:"column:report_code" json:"report_code"`
|
|
|
VideoSize string `gorm:"column:video_size" json:"video_size"`
|
|
|
Pv int `gorm:"column:pv" json:"pv"`
|
|
|
- ShareUrl string `gorm:"column:share_url" json:"share_url"`
|
|
|
- PvEmail uint `gorm:"column:pv_email" json:"pv_email"`
|
|
|
- EmailState uint8 `gorm:"column:email_state" json:"email_state"`
|
|
|
+ ShareUrl string `gorm:"column:share_url" json:"share_url"`
|
|
|
+ PvEmail uint `gorm:"column:pv_email" json:"pv_email"`
|
|
|
+ EmailState uint8 `gorm:"column:email_state" json:"email_state"`
|
|
|
+ KeyTakeaways string `gorm:"column:key_takeaways" json:"key_takeaways"`
|
|
|
base.TimeBase
|
|
|
}
|
|
|
|
|
@@ -102,6 +103,7 @@ type ReportDetail struct {
|
|
|
ModifyTime string `json:"modify_time"`
|
|
|
Overview string `json:"overview"`
|
|
|
VideoSize string `json:"video_size"`
|
|
|
+ KeyTakeaways string `json:"key_takeaways"`
|
|
|
}
|
|
|
|
|
|
type ReportDetailResp struct {
|