|
|
|
|
@ -8,6 +8,7 @@ import io.swagger.v3.oas.annotations.Operation;
|
|
|
|
|
import io.swagger.v3.oas.annotations.Parameter;
|
|
|
|
|
import io.swagger.v3.oas.annotations.Parameters;
|
|
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
|
|
import jakarta.annotation.security.PermitAll;
|
|
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
@ -26,6 +27,7 @@ public interface PayOrderApi {
|
|
|
|
|
@GetMapping(PREFIX + "/get")
|
|
|
|
|
@Operation(summary = "获得支付单")
|
|
|
|
|
@Parameter(name = "id", description = "支付单编号", example = "1", required = true)
|
|
|
|
|
@PermitAll
|
|
|
|
|
CommonResult<PayOrderRespDTO> getOrder(@RequestParam("id") Long id);
|
|
|
|
|
|
|
|
|
|
@PutMapping(PREFIX + "/update-price")
|
|
|
|
|
|