com.hn.utils.kuaidi.KuaidiParam Maven / Gradle / Ivy
package com.hn.utils.kuaidi;
import lombok.Data;
@Data
public class KuaidiParam {
/**
* 快递公司编码 必填
*/
private String com = "";
/**
* 快递单号 必填
*/
private String num = "";
/**
* 手机号码后四位 可选
*/
private String phone = "";
/**
* 出发地 可选
*/
private String from = "";
/**
* 目的地 可选
*/
private String to = "";
/**
* 开通行政区域解析功能。0:关闭(默认),1:开通行政区域解析功能,2:开通行政解析功能并且返回出发、目的及当前城市信息
* 可选
*/
private int resultv2 = 0;
/**
* 返回数据格式。0:json(默认),1:xml,2:html,3:text
* 可选
*/
private int show = 0;
/**
* 返回结果排序方式。desc:降序(默认),asc:升序
* 可选
*/
private String order = "desc";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy