|
@@ -21,6 +21,7 @@ import (
|
|
|
// @Param DataType query string true "枚举值:week、month、time_interval"
|
|
|
// @Param StartDate query string true "开始日期,格式:2022-04-06"
|
|
|
// @Param EndDate query string true "结束日期,格式:2022-04-06"
|
|
|
+// @Param CompanyType query string true "客户类型:'ficc','权益',传空默认为ficc,"
|
|
|
// @Success 200 {object} roadshow.RsReportRecordResp
|
|
|
// @router /report/researcher/list [get]
|
|
|
func (this *CalendarController) ResearcherReportList() {
|
|
@@ -39,7 +40,7 @@ func (this *CalendarController) ResearcherReportList() {
|
|
|
dataType := this.GetString("DataType")
|
|
|
startDate := this.GetString("StartDate")
|
|
|
endDate := this.GetString("EndDate")
|
|
|
-
|
|
|
+ //companyType := this.GetString("CompanyType", "ficc")
|
|
|
var adminDataList []roadshowService.AdminDataMap
|
|
|
var err error
|
|
|
//var firstDate time.Time
|
|
@@ -1715,4 +1716,4 @@ func (this *CalendarController) OverseasCalendarList() {
|
|
|
br.Msg = "获取成功"
|
|
|
br.Data = list
|
|
|
return
|
|
|
-}
|
|
|
+}
|