Commit b903cfcb authored by heyanou's avatar heyanou

修改问题

parent f665810e
...@@ -13,12 +13,12 @@ public class WxBindAccountDataRes extends WxXcxResponseBaseError { ...@@ -13,12 +13,12 @@ public class WxBindAccountDataRes extends WxXcxResponseBaseError {
/** /**
* 运力返回的错误码 * 运力返回的错误码
*/ */
private Long resultcode;// number private Long resultcode;
/** /**
* <b>运力返回的错误描述</b> * <b>运力返回的错误描述</b>
*/ */
private String resultmsg;// string private String resultmsg;
public Long getResultcode() { public Long getResultcode() {
......
...@@ -16,16 +16,16 @@ public class WxGetBindAccountDataRes extends WxXcxResponseBaseError { ...@@ -16,16 +16,16 @@ public class WxGetBindAccountDataRes extends WxXcxResponseBaseError {
/** /**
* 运力返回的错误码 * 运力返回的错误码
*/ */
private Long resultcode;// number private Long resultcode;
/** /**
* <b>运力返回的错误描述</b> * <b>运力返回的错误描述</b>
*/ */
private String resultmsg;// string private String resultmsg;
/** /**
* <b>绑定的商家签约账号列表</b> * <b>绑定的商家签约账号列表</b>
*/ */
private List<ShopList> shop_list;// number private List<ShopList> shop_list;
......
...@@ -16,16 +16,15 @@ public class WxGetAllImmeDeliveryDataRes extends WxXcxResponseBaseError { ...@@ -16,16 +16,15 @@ public class WxGetAllImmeDeliveryDataRes extends WxXcxResponseBaseError {
/** /**
* 运力返回的错误码 * 运力返回的错误码
*/ */
private Long resultcode;// number private Long resultcode;
/** /**
* <b>运力返回的错误描述</b> * <b>运力返回的错误描述</b>
*/ */
private String resultmsg;// string private String resultmsg;
/** /**
* <b>配送公司列表</b> * <b>配送公司列表</b>
*/ */
private List<Delivery> list;// number private List<Delivery> list;
......
...@@ -10,7 +10,7 @@ public class WxOpenDeliveryDataReq { ...@@ -10,7 +10,7 @@ public class WxOpenDeliveryDataReq {
* <b>是否必填:是</b> * <b>是否必填:是</b>
* <b>接口调用凭证</b> * <b>接口调用凭证</b>
*/ */
private String access_token;//是 private String access_token;
public String getAccess_token() { public String getAccess_token() {
......
...@@ -14,12 +14,12 @@ public class WxOpenDeliveryDataRes extends WxXcxResponseBaseError { ...@@ -14,12 +14,12 @@ public class WxOpenDeliveryDataRes extends WxXcxResponseBaseError {
/** /**
* 运力返回的错误码 * 运力返回的错误码
*/ */
private Long resultcode;// number private Long resultcode;
/** /**
* <b>运力返回的错误描述</b> * <b>运力返回的错误描述</b>
*/ */
private String resultmsg;// string private String resultmsg;
public Long getResultcode() { public Long getResultcode() {
......
package com.yanzuoguang.wxxcx.auth.logistics; package com.yanzuoguang.wxxcx.logistics;
/*** /***
* @description:对该类的描述(该类的功能) * @description:对该类的描述(该类的功能)
......
...@@ -6,8 +6,40 @@ package com.yanzuoguang.wxxcx.logistics.vo; ...@@ -6,8 +6,40 @@ package com.yanzuoguang.wxxcx.logistics.vo;
* @author:heyanou * @author:heyanou
*/ */
public class LogisticsPathItem { public class LogisticsPathItem {
/**
* <b>描述:轨迹节点 Unix 时间戳</b>
*/
private Long action_time;
/**
* <b>描述:轨迹节点类型</b>
*/
private Long action_type;
/**
* <b>描述:轨迹节点详情</b>
*/
private String action_msg;
private Long action_time;// number 轨迹节点 Unix 时间戳 public Long getAction_time() {
private Long action_type;// number 轨迹节点类型 return action_time;
private String action_msg;// string 轨迹节点详情 }
public void setAction_time(Long action_time) {
this.action_time = action_time;
}
public Long getAction_type() {
return action_type;
}
public void setAction_type(Long action_type) {
this.action_type = action_type;
}
public String getAction_msg() {
return action_msg;
}
public void setAction_msg(String action_msg) {
this.action_msg = action_msg;
}
} }
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