|
@@ -1,10 +1,7 @@
|
|
|
package com.hh.bidding.controller;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Collections;
|
|
|
-import java.util.List;
|
|
|
+import java.util.*;
|
|
|
import java.io.IOException;
|
|
|
-import java.util.LongSummaryStatistics;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
@@ -121,7 +118,10 @@ public class BidCommitteeController extends BaseController
|
|
|
public TableDataInfo findCommitAndExpert(@RequestParam("sid") Long sid,@RequestParam Long status)
|
|
|
{
|
|
|
startPage();
|
|
|
- List<BidCommittee> list = bidCommitteeService.findCommitteeAndExpert(sid,status);
|
|
|
+ Map map = new HashMap();
|
|
|
+ map.put("sid",sid);
|
|
|
+ map.put("status",status);
|
|
|
+ List<BidCommittee> list = bidCommitteeService.findCommitteeAndExpert(map);
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|