|
|
|
@ -272,6 +272,19 @@ public class CashCollectionController { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
//根据id查询收款订单 |
|
|
|
@PostMapping("/performanceSelect") |
|
|
|
public Result performanceSelect(@RequestBody CashCollection cashCollection) { |
|
|
|
try { |
|
|
|
CashCollection result = cashCollectionService.selectById(cashCollection); |
|
|
|
|
|
|
|
return Result.success(result); |
|
|
|
} catch (Exception e) { |
|
|
|
// 推送异常到飞书(核心:调用工具类) |
|
|
|
throw new SecurityException(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 转换现金收款订单的多语言字段 |
|
|
|
*/ |
|
|
|
|