三方额度查询
This commit is contained in:
@@ -197,6 +197,12 @@ public class UserShipperDTO extends UserDTO {
|
||||
@ApiModelProperty("客户nc编码")
|
||||
private String customerNcCode;
|
||||
|
||||
@ApiModelProperty("客户nc编码列表")
|
||||
private List<String> customerNcCodeList;
|
||||
|
||||
@ApiModelProperty("组织ID")
|
||||
private Long organizationId;
|
||||
|
||||
@ApiModelProperty("结算币种")
|
||||
private String settlementCurrency;
|
||||
|
||||
|
||||
@@ -88,6 +88,18 @@ public class UserShipperAPI extends BaseController {
|
||||
return toAjax(userShipperApplicationService.authShipper(userShipperDO));
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询赊销额度
|
||||
* @param userShipperDTO 包含 customerNcCode(客户编码)和 orgcode(组织编码)
|
||||
* @return 赊销额度查询结果
|
||||
*/
|
||||
@ApiOperation("查询赊销额度")
|
||||
@PostMapping("/querySaleCreditLimit")
|
||||
public AjaxResult querySaleCreditLimit(@RequestBody UserShipperDTO userShipperDTO) {
|
||||
return userShipperApplicationService.querySaleCreditLimit(userShipperDTO);
|
||||
}
|
||||
|
||||
|
||||
@Log(title = "托运人管理-查询", description ="查询托运人列表",businessType = BusinessType.INQUIRE)
|
||||
@ApiOperation("查询托运人列表")
|
||||
@GetMapping("/userShipperList")
|
||||
|
||||
Reference in New Issue
Block a user