|
@@ -90,6 +90,7 @@ type Report struct {
|
|
|
ReportCreateTime time.Time `description:"报告时间创建时间"`
|
|
|
InheritReportId int `description:"待继承的报告ID"`
|
|
|
VoiceGenerateType int `description:"音频生成方式,0:系统生成,1:人工上传"`
|
|
|
+ RaiReportId int `description:"RAI报告ID"`
|
|
|
}
|
|
|
|
|
|
type ReportList struct {
|
|
@@ -156,6 +157,7 @@ type ReportList struct {
|
|
|
InheritReportId int `description:"待继承的报告ID"`
|
|
|
IsCollect int `description:"是否收藏"`
|
|
|
ClassifyEnabled bool `description:"分类是否禁用"`
|
|
|
+ RaiReportId int `description:"RAI报告ID"`
|
|
|
}
|
|
|
|
|
|
type ReportListResp struct {
|
|
@@ -379,6 +381,7 @@ type ReportDetail struct {
|
|
|
IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
|
|
|
ReportCreateTime time.Time `description:"报告时间创建时间"`
|
|
|
ClassifyEnabled bool `description:"分类是否禁用"`
|
|
|
+ RaiReportId int `description:"RAI报告ID"`
|
|
|
}
|
|
|
|
|
|
func GetReportById(reportId int) (item *ReportDetail, err error) {
|