bms推送nc接口;

This commit is contained in:
王奎兴
2026-02-27 13:57:49 +08:00
parent 17c1751474
commit af4c93fd42
3 changed files with 53 additions and 1 deletions
@@ -292,6 +292,41 @@ public class BillManageApi extends BaseController{
/**
* 应收账单应收单同步用户nc65
*/
@Log(title = "应收账单应收单同步用户nc65", description = "应收账单应收单同步用户nc65", businessType = BusinessType.OTHER)
@ApiOperation("应收账单应收单同步用户nc65")
@GetMapping(value = "/synchronousNc")
public AjaxResult synchronousNc(@RequestParam(name="reconciliationId") String reconciliationId)
{
try{
return AjaxResult.success(billManageApplicationService.synchronousNc(reconciliationId));}
catch (Exception e){
e.printStackTrace();
return AjaxResult.error(e.getMessage());
}
}
/**
* 应收账单收款单同步用户nc65
*/
@Log(title = "应收账单收款单同步用户nc65", description = "应收账单收款单同步用户nc65", businessType = BusinessType.OTHER)
@ApiOperation("应收账单收款单同步用户nc65")
@GetMapping(value = "/synchronousNcSK")
public AjaxResult synchronousNcSK(@RequestParam(name="reconciliationId") String reconciliationId)
{
try{
return AjaxResult.success(billManageApplicationService.synchronousNcSK(reconciliationId));
} catch (Exception e){
e.printStackTrace();
return AjaxResult.error(e.getMessage());
}
}
}