Commit 1dfbd9db by 雷后领

新增配送渠道字段

parents efbc605e 27498bf2
......@@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>assortment-ordercenter-sdk</artifactId>
<version>1.6.7-SNAPSHOT</version>
<version>1.7.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
......
......@@ -43,4 +43,5 @@
| 1.4.2.RELEASE | 申请退款切取消接口新增超时时间字段 | 伍平 | 2020-05-12 |
| 1.4.3.RELEASE | 增加售后阶段 | 海波 | 2020-05-14 |
| 1.7.7-SNAPSHOT| 聚合订单综合查询新增新订单类型 | wuping | 2020-05-15 |
| 1.7.8-SNAPSHOT| 预约单接单后提醒时间区分外卖自提 | wuping | 2020-05-18 |
\ No newline at end of file
| 1.7.8-SNAPSHOT| 预约单接单后提醒时间区分外卖自提 | wuping | 2020-05-18 |
| 1.7.1-SNAPSHOT| 订单查询返回配送渠道字段 | 雷后领 | 2020-05-14 |
\ No newline at end of file
......@@ -1000,11 +1000,11 @@ public class OrderSdkAdapter {
//运单相关信息
data.setDeliverStatus(orderInfoReqs.getDeliveryState() != null ? orderInfoReqs.getDeliveryState() : 0);
data.setReceiveTime("");
data.setReceiveTime(orderInfoReqs.getReceiveTime());
data.setDepatchTime("");
data.setArriveShopTime("");
data.setSendTime("");
data.setCompleteTime("");
data.setCompleteTime(orderInfoReqs.getReceiveTime());
data.setParentCode(orderInfoReqs.getParentCode());
data.setIsParent(orderInfoReqs.getIsParent());
data.setBizType(orderInfoReqs.getBizType());
......@@ -1027,6 +1027,7 @@ public class OrderSdkAdapter {
data.setOrderOperationHistoryList(getOrderOperationHistory(orderInfoReqs.getOrderOperationHistoryList()));
data.setApportionDetails(getApportionDetails(orderInfoReqs));
data.setOrderCostDetailList(orderInfoReqs.getOrderCostDetailList());
data.setExpressChannelName(orderInfoReqs.getExpressChannelName());
return data;
}
......
......@@ -296,7 +296,7 @@ public class QueryOrdersResponse {
*/
private String riderPhone;
/**
* 系统接单时间
* 签收时间 送达时间 收货时间
*/
private String receiveTime;
/**
......@@ -341,6 +341,11 @@ public class QueryOrdersResponse {
*/
private BigDecimal weight;
/**
* 配送渠道
*/
private String expressChannelName;
@NoArgsConstructor
@Data
......
......@@ -222,4 +222,17 @@
</repository>
</repositories>
<build>
<plugins>
<!-- maven 打包时跳过测试 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
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