三方额度查询

This commit is contained in:
赵辉
2026-06-16 16:23:34 +08:00
parent ff5bc742aa
commit c6e4e76d82
6 changed files with 129 additions and 0 deletions
@@ -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")