作者 陈志颖

fix:修复分红预算信息和金额激励信息查询错误

@@ -165,10 +165,10 @@ func (controller *DividendsEstimateController) SearchMoneyIncentivesEstimate() { @@ -165,10 +165,10 @@ func (controller *DividendsEstimateController) SearchMoneyIncentivesEstimate() {
165 searchMoneyIncentivesEstimateQuery.OrgId = header.OrgId 165 searchMoneyIncentivesEstimateQuery.OrgId = header.OrgId
166 searchMoneyIncentivesEstimateQuery.UserId = header.UserId 166 searchMoneyIncentivesEstimateQuery.UserId = header.UserId
167 searchMoneyIncentivesEstimateQuery.UserBaseId = header.UserBaseId 167 searchMoneyIncentivesEstimateQuery.UserBaseId = header.UserBaseId
168 - pageSize, _ := controller.GetInt64("pageSize")  
169 - searchMoneyIncentivesEstimateQuery.PageSize = pageSize  
170 - pageNumber, _ := controller.GetInt64("pageNumber")  
171 - searchMoneyIncentivesEstimateQuery.PageNumber = pageNumber 168 + //pageSize, _ := controller.GetInt64("pageSize")
  169 + //searchMoneyIncentivesEstimateQuery.PageSize = pageSize
  170 + //pageNumber, _ := controller.GetInt64("pageNumber")
  171 + //searchMoneyIncentivesEstimateQuery.PageNumber = pageNumber
172 data, err := dividendsEstimateService.SearchMoneyIncentivesEstimate(searchMoneyIncentivesEstimateQuery) 172 data, err := dividendsEstimateService.SearchMoneyIncentivesEstimate(searchMoneyIncentivesEstimateQuery)
173 controller.Response(data, err) 173 controller.Response(data, err)
174 } 174 }
@@ -200,10 +200,10 @@ func (controller *DividendsEstimateController) SearchDividendsIncentivesEstimate @@ -200,10 +200,10 @@ func (controller *DividendsEstimateController) SearchDividendsIncentivesEstimate
200 searchDividendsIncentivesQuery.OrgId = header.OrgId 200 searchDividendsIncentivesQuery.OrgId = header.OrgId
201 searchDividendsIncentivesQuery.UserId = header.UserId 201 searchDividendsIncentivesQuery.UserId = header.UserId
202 searchDividendsIncentivesQuery.UserBaseId = header.UserBaseId 202 searchDividendsIncentivesQuery.UserBaseId = header.UserBaseId
203 - pageSize, _ := controller.GetInt64("pageSize")  
204 - searchDividendsIncentivesQuery.PageSize = pageSize  
205 - pageNumber, _ := controller.GetInt64("pageNumber")  
206 - searchDividendsIncentivesQuery.PageNumber = pageNumber 203 + //pageSize, _ := controller.GetInt64("pageSize")
  204 + //searchDividendsIncentivesQuery.PageSize = pageSize
  205 + //pageNumber, _ := controller.GetInt64("pageNumber")
  206 + //searchDividendsIncentivesQuery.PageNumber = pageNumber
207 data, err := dividendsEstimateService.SearchDividendsIncentivesEstimate(searchDividendsIncentivesQuery) 207 data, err := dividendsEstimateService.SearchDividendsIncentivesEstimate(searchDividendsIncentivesQuery)
208 controller.Response(data, err) 208 controller.Response(data, err)
209 } 209 }