|
@@ -86,6 +86,7 @@ type Report struct {
|
|
IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
|
|
IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
|
|
ReportCreateTime time.Time `description:"报告时间创建时间"`
|
|
ReportCreateTime time.Time `description:"报告时间创建时间"`
|
|
InheritReportId int `description:"待继承的报告ID"`
|
|
InheritReportId int `description:"待继承的报告ID"`
|
|
|
|
+ VoiceGenerateType int `description:"音频生成方式,0:系统生成,1:人工上传"`
|
|
}
|
|
}
|
|
|
|
|
|
type ReportList struct {
|
|
type ReportList struct {
|
|
@@ -650,6 +651,23 @@ func ModifyReportVideo(reportId int, videoUrl, videoName, videoSize string, play
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+// ModifyReportVideoByNoVideo
|
|
|
|
+// @Description: 修改无音频的报告音频信息
|
|
|
|
+// @author: Roc
|
|
|
|
+// @datetime 2024-07-25 18:03:05
|
|
|
|
+// @param reportId int
|
|
|
|
+// @param videoUrl string
|
|
|
|
+// @param videoName string
|
|
|
|
+// @param videoSize string
|
|
|
|
+// @param playSeconds float64
|
|
|
|
+// @return err error
|
|
|
|
+func ModifyReportVideoByNoVideo(reportId int, videoUrl, videoName, videoSize string, playSeconds float64) (err error) {
|
|
|
|
+ o := orm.NewOrmUsingDB("rddp")
|
|
|
|
+ sql := `UPDATE report SET video_url=?,video_name=?,video_play_seconds=?,video_size=? WHERE id=? AND video_url=""`
|
|
|
|
+ _, err = o.Raw(sql, videoUrl, videoName, playSeconds, videoSize, reportId).Exec()
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
+
|
|
type ReportItem struct {
|
|
type ReportItem struct {
|
|
Id int `orm:"column(id)" description:"报告Id"`
|
|
Id int `orm:"column(id)" description:"报告Id"`
|
|
AddType int `description:"新增方式:1:新增报告,2:继承报告"`
|
|
AddType int `description:"新增方式:1:新增报告,2:继承报告"`
|
|
@@ -705,7 +723,7 @@ func EditReportContent(reportId int, content, contentSub string) (err error) {
|
|
|
|
|
|
func AddReportSaveLog(reportId, adminId int, content, contentSub, contentStruct, canvasColor, adminName string, headResourceId, endResourceId int) (err error) {
|
|
func AddReportSaveLog(reportId, adminId int, content, contentSub, contentStruct, canvasColor, adminName string, headResourceId, endResourceId int) (err error) {
|
|
o := orm.NewOrmUsingDB("rddp")
|
|
o := orm.NewOrmUsingDB("rddp")
|
|
- sql := ` INSERT INTO report_save_log(report_id, content,content_sub,content_struct,canvas_color,head_resource_id,end_resource_id,admin_id,admin_name) VALUES (?,?,?,?,?) `
|
|
|
|
|
|
+ sql := ` INSERT INTO report_save_log(report_id, content,content_sub,content_struct,canvas_color,head_resource_id,end_resource_id,admin_id,admin_name) VALUES (?,?,?,?,?,?,?,?,?) `
|
|
_, err = o.Raw(sql, reportId, content, contentSub, contentStruct, canvasColor, headResourceId, endResourceId, adminId, adminName).Exec()
|
|
_, err = o.Raw(sql, reportId, content, contentSub, contentStruct, canvasColor, headResourceId, endResourceId, adminId, adminName).Exec()
|
|
return
|
|
return
|
|
}
|
|
}
|