|
|
@ -1,23 +1,17 @@ |
|
|
|
package com.daqing.financial.guarantee.controller; |
|
|
|
package com.daqing.financial.guarantee.controller; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.daqing.financial.guarantee.model.request.PaymentConfirmationListRequest; |
|
|
|
|
|
|
|
import com.daqing.financial.guarantee.model.request.PaymentConfirmationQueryRequest; |
|
|
|
import com.daqing.financial.guarantee.model.request.PaymentConfirmationQueryRequest; |
|
|
|
import com.daqing.financial.guarantee.model.request.PaymentConfirmationUpdateRequest; |
|
|
|
import com.daqing.financial.guarantee.model.request.PaymentConfirmationUpdateRequest; |
|
|
|
import com.daqing.financial.guarantee.model.response.PaymentConfirmationListResponse; |
|
|
|
import com.daqing.financial.guarantee.model.response.PaymentConfirmationListResponse; |
|
|
|
import com.daqing.financial.guarantee.service.IDgPaymentConfirmationConsiderService; |
|
|
|
import com.daqing.financial.guarantee.service.IDgPaymentConfirmationConsiderService; |
|
|
|
import com.daqing.framework.model.response.ResponseResult; |
|
|
|
import com.daqing.framework.model.response.ResponseResult; |
|
|
|
import com.daqing.framework.utils.PageUtils; |
|
|
|
import com.daqing.framework.utils.PageUtils; |
|
|
|
import com.daqing.framework.utils.excel.EasyExcelUtil; |
|
|
|
|
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import io.swagger.annotations.ApiParam; |
|
|
|
import io.swagger.annotations.ApiParam; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
import java.io.IOException; |
|
|
|
import java.io.IOException; |
|
|
@ -48,17 +42,13 @@ public class DgPaymentConfirmationConsiderController { |
|
|
|
return new ResponseResult<PageUtils>().SUCCESS(data); |
|
|
|
return new ResponseResult<PageUtils>().SUCCESS(data); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "导出回款确认列表数据") |
|
|
|
@ApiOperation(value = "导出回款确认列表数据") |
|
|
|
@PostMapping("/paymentConfirmationListExport") |
|
|
|
@GetMapping("/paymentConfirmationListExport") |
|
|
|
public void paymentConfirmationListExport( |
|
|
|
public void paymentConfirmationListExport( |
|
|
|
@ApiParam(name = "paymentConfirmationListRequest", value = "回款确认列表数据", required = true) |
|
|
|
@ApiParam(name = "ids", value = "多个id", required = true) |
|
|
|
@RequestBody PaymentConfirmationListRequest paymentConfirmationListRequest, HttpServletResponse response){ |
|
|
|
@RequestParam("ids") List<String> ids, HttpServletResponse response){ |
|
|
|
//获取担保函列表数据
|
|
|
|
|
|
|
|
List<PaymentConfirmationListResponse> paymentConfirmationListResponseList = paymentConfirmationListRequest.getPaymentConfirmationListResponseList(); |
|
|
|
|
|
|
|
try { |
|
|
|
try { |
|
|
|
//导出excel文件
|
|
|
|
paymentConfirmationConsiderService.batchExport(response,ids); |
|
|
|
EasyExcelUtil.download(response, PaymentConfirmationListResponse.class, paymentConfirmationListResponseList,"回款确认列表","第一页"); |
|
|
|
|
|
|
|
} catch (IOException e) { |
|
|
|
} catch (IOException e) { |
|
|
|
e.printStackTrace(); |
|
|
|
e.printStackTrace(); |
|
|
|
} |
|
|
|
} |
|
|
|