Python 官方文档:入门教程 => 点击学习
一、前言 本文将基于SpringBoot2.4.0实现快递物流查询,物流信息的获取通过阿里云第三方实现 可参考: https://market.aliyun.com/products
本文将基于SpringBoot2.4.0实现快递物流查询,物流信息的获取通过阿里云第三方实现
可参考: https://market.aliyun.com/products/57124001/cmapi022273.html?spm=5176.730005.productlist.d_cmapi022273.e8357d36FVX3Eu&innerSource=search#sku=yuncode1627300000
快递查询API,快递识别单号,快递接口可查询上百家快递公司及物流快递信息包括:顺丰、申通、圆通、韵达、中通、汇通、EMS、天天、国通、德邦、宅急送等几百家快递物流公司单号查询接口。与官网实时同步更新,包含快递送达时间。
注:需要购买快递物流查询接口服务获取AppCode
工具类
@Slf4j
public class LoGISticUtil {
public static LogisticVO getLogisticInfo(LogisticDTO params) {
String no = params.getNo();
String type = params.getType();
String appCode = params.getAppCode();
// 请求地址
String requestUrl = String.fORMat("https://kdwlcxf.market.alicloudapi.com/kdwlcx?no=%s&type=%s",
no, StringUtils.isBlank(type) ? "" : type);
// 发起请求
Map<String, String> headerMap = Maps.newHashMap();
headerMap.put("Authorization", String.format("APPCODE %s", appCode));
String resultJSON = HttpUtil.getUrl(requestUrl, headerMap);
LogisticApiResult logisticApiResult = jsON.parseObject(resultJson, LogisticApiResult.class);
Assert.notNull(logisticApiResult, "参数异常");
Assert.isTrue(logisticApiResult.getStatus() == 0, logisticApiResult.getMsg());
return logisticApiResult.getResult();
}
}
请求实体类
@Data
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@ApiModel("物流-查询参数")
public class LogisticDTO {
@ApiModelProperty(value = "快递单号 【顺丰请输入运单号 : 收件人或寄件人手机号后四位。例如:123456789:1234】", required = true, example = "780098068058")
private String no;
@ApiModelProperty(value = "快递公司代码: 可不填自动识别,填了查询更快【代码见附表】", required = true, example = "zto")
private String type;
@ApiModelProperty(value = "appCode", required = true, example = "xxx")
private String appCode;
}
响应实体类
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ApiModel("物流-api响应结果")
public class LogisticApiResult {
@ApiModelProperty("状态码")
private Integer status;
@ApiModelProperty("提示信息")
private String msg;
@ApiModelProperty("结果集")
private LogisticVO result;
}
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ApiModel("物流-响应参数")
public class LogisticVO {
@ApiModelProperty("运单编号")
private String number;
@ApiModelProperty("快递公司编码[见附表]")
private String type;
@ApiModelProperty("投递状态 0快递收件(揽件)1在途中 2正在派件 3已签收 4派送失败 5.疑难件 6.退件签收")
private String deliverystatus;
@ApiModelProperty("是否本人签收")
private String issign;
@ApiModelProperty("快递公司名字")
private String expName;
@ApiModelProperty("快递公司官网")
private String expSite;
@ApiModelProperty("快递公司电话")
private String expPhone;
@ApiModelProperty("快递员")
private String courier;
@ApiModelProperty("快递员电话")
private String courierPhone;
@ApiModelProperty("最新轨迹的时间")
private String updateTime;
@ApiModelProperty("发货到收货耗时(截止最新轨迹)")
private String takeTime;
@ApiModelProperty("快递公司loGo")
private String logo;
@ApiModelProperty("事件轨迹集")
private List<LogisticItem> list;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ApiModel("事件轨迹集")
public static class LogisticItem {
@ApiModelProperty("时间点")
private String time;
@ApiModelProperty("事件详情")
private String status;
}
}
@Slf4j
@RestController
@RequestMapping("/test")
@Api(tags = "测试api")
public class TestController {
@ApiOperation("查询物流信息")
@GetMapping("getLogistic")
public LogisticVO getLogistic(@ModelAttribute LogisticDTO params) {
return LogisticUtil.getLogisticInfo(params);
}
}
接口文档 http://127.0.0.1/doc.html
本文demo源码
https://gitee.com/zhengqingya/java-workspace
到此这篇关于springBoot实现阿里云快递物流查询的示例代码的文章就介绍到这了,更多相关SpringBoot 阿里云快递物流查询内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: SpringBoot实现阿里云快递物流查询的示例代码
本文链接: https://lsjlt.com/news/155845.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0