|  | @@ -648,30 +648,9 @@ public class KuaishouItemCollectSamplesController extends BaseController {
 | 
	
		
			
				|  |  |       *
 | 
	
		
			
				|  |  |       * @return
 | 
	
		
			
				|  |  |       */
 | 
	
		
			
				|  |  | -    @GetMapping("/exportProductList")
 | 
	
		
			
				|  |  | +    @PostMapping("/exportProductList")
 | 
	
		
			
				|  |  |      @ApiOperation(value = "激励列表导出")
 | 
	
		
			
				|  |  | -    public void exportProductList(HttpServletResponse response,
 | 
	
		
			
				|  |  | -                                  @ApiParam("商品ID") @RequestParam(value = "itemId", required = false) Long itemId,
 | 
	
		
			
				|  |  | -                                  @ApiParam("商品标题") @RequestParam(value = "itemTitle", required = false) String itemTitle,
 | 
	
		
			
				|  |  | -                                  @ApiParam("达人id") @RequestParam(value = "promoterId", required = false) Long promoterId,
 | 
	
		
			
				|  |  | -                                  @ApiParam("达人昵称") @RequestParam(value = "promoterNickName", required = false) String promoterNickName,
 | 
	
		
			
				|  |  | -                                  @ApiParam("商品单价起始价") @RequestParam(value = "reservePriceStart", required = false) Double reservePriceStart,
 | 
	
		
			
				|  |  | -                                  @ApiParam("商品单价结束价") @RequestParam(value = "reservePriceEnd", required = false) Double reservePriceEnd,
 | 
	
		
			
				|  |  | -                                  @ApiParam("有效订单数起始数") @RequestParam(value = "validorderStart", required = false) Double validorderStart,
 | 
	
		
			
				|  |  | -                                  @ApiParam("有效订单数结束数") @RequestParam(value = "validorderEnd", required = false) Double validorderEnd,
 | 
	
		
			
				|  |  | -                                  @ApiParam("起始时间") @RequestParam(value = "startDate", required = true) String startDate,
 | 
	
		
			
				|  |  | -                                  @ApiParam("结束时间") @RequestParam(value = "endDate", required = true) String endDate) throws IOException {
 | 
	
		
			
				|  |  | -        Map<String, Object> map = new HashMap<>();
 | 
	
		
			
				|  |  | -        map.put("itemId", itemId);
 | 
	
		
			
				|  |  | -        map.put("itemTitle", itemTitle);
 | 
	
		
			
				|  |  | -        map.put("promoterId", promoterId);
 | 
	
		
			
				|  |  | -        map.put("promoterNickName", promoterNickName);
 | 
	
		
			
				|  |  | -        map.put("reservePriceStart", reservePriceStart);
 | 
	
		
			
				|  |  | -        map.put("reservePriceEnd", reservePriceEnd);
 | 
	
		
			
				|  |  | -        map.put("validorderStart", validorderStart);
 | 
	
		
			
				|  |  | -        map.put("validorderEnd", validorderEnd);
 | 
	
		
			
				|  |  | -        map.put("startDate", startDate);
 | 
	
		
			
				|  |  | -        map.put("endDate", endDate);
 | 
	
		
			
				|  |  | +    public void exportProductList(HttpServletResponse response, @RequestBody Map<String, Object> map) throws IOException {
 | 
	
		
			
				|  |  |          List<JSONObject> list = kuaishouItemCollectSamplesService.exportProductList(map);
 | 
	
		
			
				|  |  |          List<List<Object>> exportList = new ArrayList<>();
 | 
	
		
			
				|  |  |          if (!Check.isNull(list)) {
 |