10.8开发
This commit is contained in:
+3
-4
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user