|
|
@@ -44,14 +44,14 @@ public interface IPriceBankClient {
|
|
|
@RequestParam("price") BigDecimal price,
|
|
|
@RequestParam("tenantId") String tenantId,
|
|
|
@RequestParam("corpId")Long corpId,
|
|
|
- @RequestParam("specs")String specs,
|
|
|
+ @RequestParam(value = "specs",required = false)String specs,
|
|
|
@RequestParam("billType")String billType,
|
|
|
@RequestParam("tradeType") String tradeType,
|
|
|
- @RequestParam("exchangeRate") BigDecimal exchangeRate,
|
|
|
- @RequestParam("greenback") BigDecimal greenback,
|
|
|
- @RequestParam("currency") String currency,
|
|
|
- @RequestParam("coefficient") BigDecimal coefficient,
|
|
|
- @RequestParam("taxRate") BigDecimal taxRate,
|
|
|
+ @RequestParam(value = "exchangeRate",required = false) BigDecimal exchangeRate,
|
|
|
+ @RequestParam(value = "greenback",required = false) BigDecimal greenback,
|
|
|
+ @RequestParam(value = "currency",required = false) String currency,
|
|
|
+ @RequestParam(value = "coefficient",required = false) BigDecimal coefficient,
|
|
|
+ @RequestParam(value = "taxRate",required = false) BigDecimal taxRate,
|
|
|
@RequestParam(value = "dateTime",required = false) String dateTime,
|
|
|
@RequestParam(value = "purchaseAmount",required = false) BigDecimal purchaseAmount,
|
|
|
@RequestParam(value = "priorityReferrer",required = false) Integer priorityReferrer,
|