作者 yangfu

增加 单个部门统计接口

@@ -636,4 +636,5 @@ type ChanceReviseDetailRequest struct { @@ -636,4 +636,5 @@ type ChanceReviseDetailRequest struct {
636 } 636 }
637 type ChanceReviseDetailResponse struct { 637 type ChanceReviseDetailResponse struct {
638 ChanceReviseData ChanceReviseLog `json:"chanceReviseData"` 638 ChanceReviseData ChanceReviseLog `json:"chanceReviseData"`
  639 + ChanceId int64 `json:"chanceId"` //机会编号
639 } 640 }
@@ -111,7 +111,7 @@ type DepartmentStatistics struct { @@ -111,7 +111,7 @@ type DepartmentStatistics struct {
111 111
112 /*DepartmentStatistic 单部门统计*/ 112 /*DepartmentStatistic 单部门统计*/
113 type DepartmentStatisticRequest struct { 113 type DepartmentStatisticRequest struct {
114 - DepartmentId int `json:"did"` 114 + DepartmentId int `json:"departmentId"`
115 } 115 }
116 type DepartmentStatisticResponse struct { 116 type DepartmentStatisticResponse struct {
117 DepartmentStatistic DepartmentStatistics `json:"departmentStatistic"` 117 DepartmentStatistic DepartmentStatistics `json:"departmentStatistic"`
@@ -2267,5 +2267,6 @@ func ChanceReviseDetail(header *protocol.RequestHeader, request *protocol.Chance @@ -2267,5 +2267,6 @@ func ChanceReviseDetail(header *protocol.RequestHeader, request *protocol.Chance
2267 } 2267 }
2268 json.Unmarshal([]byte(detail.Data), &rsp.ChanceReviseData) 2268 json.Unmarshal([]byte(detail.Data), &rsp.ChanceReviseData)
2269 rsp.ChanceReviseData.Provider = provider 2269 rsp.ChanceReviseData.Provider = provider
  2270 + rsp.ChanceId = detail.ChanceId
2270 return 2271 return
2271 } 2272 }