记得上下班打卡 | git大法好,push需谨慎

Commit feda7ab5 authored by 胡佳晨's avatar 胡佳晨

提交快递费

parent a0bc0afa
......@@ -64,6 +64,8 @@ public class GoblinBackOrderVo implements Serializable, Cloneable {
private Integer status;
@ApiModelProperty(value = "是否预存款支付[0-否|1-是]")
private Integer preDepositPay;
@ApiModelProperty(value = "支付方式")
private String payType;
@ApiModelProperty(value = "物流公司名称")
private String logisCompanyName;
@ApiModelProperty(value = "物流单号")
......
......@@ -285,6 +285,8 @@ public class GoblinOrderAppServiceImpl implements IGoblinOrderAppService {
List<String> backOrderList = redisUtils.getBackOrderByOrderId(orderId);
for (String backOrderId : backOrderList) {
GoblinBackOrderVo vo = redisUtils.getBackOrderVo(backOrderId);
GoblinStoreOrderVo orderVo = redisUtils.getGoblinOrder(vo.getOrderId());
vo.setPayType(orderVo.getPayType());
vos.add(vo);
}
return ResponseDto.success(vos);
......
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