Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
b903cfcb
Commit
b903cfcb
authored
Jul 11, 2022
by
heyanou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改问题
parent
f665810e
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
47 additions
and
16 deletions
+47
-16
WxBindAccountDataRes.java
...wxxcx/immediateDelivery/account/WxBindAccountDataRes.java
+2
-2
WxGetBindAccountDataRes.java
...cx/immediateDelivery/account/WxGetBindAccountDataRes.java
+3
-3
WxGetAllImmeDeliveryDataRes.java
...mediateDelivery/delivery/WxGetAllImmeDeliveryDataRes.java
+3
-4
WxOpenDeliveryDataReq.java
...xcx/immediateDelivery/delivery/WxOpenDeliveryDataReq.java
+1
-1
WxOpenDeliveryDataRes.java
...xcx/immediateDelivery/delivery/WxOpenDeliveryDataRes.java
+2
-2
PathItemActionType.java
...a/com/yanzuoguang/wxxcx/logistics/PathItemActionType.java
+1
-1
LogisticsPathItem.java
...com/yanzuoguang/wxxcx/logistics/vo/LogisticsPathItem.java
+35
-3
No files found.
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/immediateDelivery/account/WxBindAccountDataRes.java
View file @
b903cfcb
...
...
@@ -13,12 +13,12 @@ public class WxBindAccountDataRes extends WxXcxResponseBaseError {
/**
* 运力返回的错误码
*/
private
Long
resultcode
;
// number
private
Long
resultcode
;
/**
* <b>运力返回的错误描述</b>
*/
private
String
resultmsg
;
// string
private
String
resultmsg
;
public
Long
getResultcode
()
{
...
...
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/immediateDelivery/account/WxGetBindAccountDataRes.java
View file @
b903cfcb
...
...
@@ -16,16 +16,16 @@ public class WxGetBindAccountDataRes extends WxXcxResponseBaseError {
/**
* 运力返回的错误码
*/
private
Long
resultcode
;
// number
private
Long
resultcode
;
/**
* <b>运力返回的错误描述</b>
*/
private
String
resultmsg
;
// string
private
String
resultmsg
;
/**
* <b>绑定的商家签约账号列表</b>
*/
private
List
<
ShopList
>
shop_list
;
// number
private
List
<
ShopList
>
shop_list
;
...
...
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/immediateDelivery/delivery/WxGetAllImmeDeliveryDataRes.java
View file @
b903cfcb
...
...
@@ -16,16 +16,15 @@ public class WxGetAllImmeDeliveryDataRes extends WxXcxResponseBaseError {
/**
* 运力返回的错误码
*/
private
Long
resultcode
;
// number
private
Long
resultcode
;
/**
* <b>运力返回的错误描述</b>
*/
private
String
resultmsg
;
// string
private
String
resultmsg
;
/**
* <b>配送公司列表</b>
*/
private
List
<
Delivery
>
list
;
// number
private
List
<
Delivery
>
list
;
...
...
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/immediateDelivery/delivery/WxOpenDeliveryDataReq.java
View file @
b903cfcb
...
...
@@ -10,7 +10,7 @@ public class WxOpenDeliveryDataReq {
* <b>是否必填:是</b>
* <b>接口调用凭证</b>
*/
private
String
access_token
;
//是
private
String
access_token
;
public
String
getAccess_token
()
{
...
...
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/immediateDelivery/delivery/WxOpenDeliveryDataRes.java
View file @
b903cfcb
...
...
@@ -14,12 +14,12 @@ public class WxOpenDeliveryDataRes extends WxXcxResponseBaseError {
/**
* 运力返回的错误码
*/
private
Long
resultcode
;
// number
private
Long
resultcode
;
/**
* <b>运力返回的错误描述</b>
*/
private
String
resultmsg
;
// string
private
String
resultmsg
;
public
Long
getResultcode
()
{
...
...
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/logistics/PathItemActionType.java
View file @
b903cfcb
package
com
.
yanzuoguang
.
wxxcx
.
auth
.
logistics
;
package
com
.
yanzuoguang
.
wxxcx
.
logistics
;
/***
* @description:对该类的描述(该类的功能)
...
...
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/logistics/vo/LogisticsPathItem.java
View file @
b903cfcb
...
...
@@ -6,8 +6,40 @@ package com.yanzuoguang.wxxcx.logistics.vo;
* @author:heyanou
*/
public
class
LogisticsPathItem
{
/**
* <b>描述:轨迹节点 Unix 时间戳</b>
*/
private
Long
action_time
;
/**
* <b>描述:轨迹节点类型</b>
*/
private
Long
action_type
;
/**
* <b>描述:轨迹节点详情</b>
*/
private
String
action_msg
;
public
Long
getAction_time
()
{
return
action_time
;
}
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
;
}
private
Long
action_time
;
// number 轨迹节点 Unix 时间戳
private
Long
action_type
;
// number 轨迹节点类型
private
String
action_msg
;
// string 轨迹节点详情
public
void
setAction_msg
(
String
action_msg
)
{
this
.
action_msg
=
action_msg
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment