记得上下班打卡 | git大法好,push需谨慎

Commit 938aebaa authored by 胡佳晨's avatar 胡佳晨

万青 弥补 快递 相关接口提交

parent b183472f
...@@ -55,4 +55,14 @@ public class TempController { ...@@ -55,4 +55,14 @@ public class TempController {
return kylinTempService.getWqTempExpress(orderId); return kylinTempService.getWqTempExpress(orderId);
} }
@GetMapping("sendMail")
@ApiOperation("发货万青订单")
@ApiImplicitParams({
@ApiImplicitParam(type = "query", dataType = "String", name = "orderId", value = "订单id", required = true),
@ApiImplicitParam(type = "query", dataType = "String", name = "mailNo", value = "快递单号", required = true),
})
public ResponseDto<Boolean> getWqTempVo(String orderId, String mailNo) {
return kylinTempService.updateMailNo(orderId, mailNo);
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment