|
|
@ -1,8 +1,17 @@ |
|
|
|
package com.daqing.financial.guarantee.controller; |
|
|
|
package com.daqing.financial.guarantee.controller; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.daqing.financial.guarantee.model.response.PaymentConfirmationListResponse; |
|
|
|
|
|
|
|
import com.daqing.financial.guarantee.service.IDgAuditProcessService; |
|
|
|
|
|
|
|
import com.daqing.financial.guarantee.service.IDgProcessService; |
|
|
|
|
|
|
|
import com.daqing.framework.model.response.ResponseResult; |
|
|
|
|
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
|
|
|
|
import io.swagger.annotations.ApiParam; |
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -17,4 +26,16 @@ import org.springframework.web.bind.annotation.RestController; |
|
|
|
@RequestMapping("/dg-audit-process") |
|
|
|
@RequestMapping("/dg-audit-process") |
|
|
|
public class DgAuditProcessController { |
|
|
|
public class DgAuditProcessController { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
|
|
|
private IDgAuditProcessService auditProcessService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "审核流程进程列表") |
|
|
|
|
|
|
|
@GetMapping("/auditProcessList") |
|
|
|
|
|
|
|
public ResponseResult processList( |
|
|
|
|
|
|
|
@ApiParam(name = "businessId", value = "业务id", required = true) |
|
|
|
|
|
|
|
@RequestParam String businessId){ |
|
|
|
|
|
|
|
return ResponseResult.SUCCESS(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|