Browse Source

fix:添加报告公有权限标识

zqbao 9 months ago
parent
commit
7c20c5b49f
1 changed files with 2 additions and 0 deletions
  1. 2 0
      models/report.go

+ 2 - 0
models/report.go

@@ -27,6 +27,7 @@ type ReportList struct {
 	HasPermission      int       `description:"是否拥有报告权限,1:拥有,0:没有"`
 	TitleType          string    `description:"标题类型,FICC或者权益"`
 	IsCurrentDate      int       `description:"是否当前日期:1是,0不是"`
+	IsPublic           bool      `description:"是否是公共报告"`
 	ClassifyDetail
 }
 
@@ -57,4 +58,5 @@ type ReportDetail struct {
 	IsCurrentDate      int    `description:"是否当前日期"`
 	ClassifyName       string `description:"分类名称"`
 	TitleType          string `description:"标题类型,FICC或者权益"`
+	IsPublic           bool   `description:"是否是公共报告"`
 }