10.8开发

This commit is contained in:
hejinbo
2023-10-08 16:56:30 +08:00
parent 80e9814cd6
commit 848581e155
5 changed files with 81 additions and 40 deletions
@@ -41,12 +41,11 @@ public class AdjudicationController extends BaseController {
/**
* 根据快递单号查询物流信息
* @param trackingNum 单号
* @param phoneLastFour 收/寄件人手机号后四位,顺丰快递需填写本字段。
* @param caseApplication
* @return
*/
@GetMapping("/logistics")
public AjaxResult getLogisticsInfo(String trackingNum,Integer phoneLastFour){
return adjudicationService.getLogisticsInfo(trackingNum,phoneLastFour);
public AjaxResult getLogisticsInfo(@Validated @RequestBody CaseApplication caseApplication){
return adjudicationService.getLogisticsInfo(caseApplication);
}
}