浏览代码

fix

release_toaliyun_real
winter 7 个月前
父节点
当前提交
7caa4b2893
共有 2 个文件被更改,包括 4 次插入 和 0 次删除
  1. +3
    -0
      mallinkService/src/main/java/com/iformall/domain/vo/WxCardSpendVo.java
  2. +1
    -0
      mallinkService/src/main/java/com/iformall/service/impl/WxCardSpendServiceImpl.java

+ 3
- 0
mallinkService/src/main/java/com/iformall/domain/vo/WxCardSpendVo.java 查看文件

@@ -22,6 +22,9 @@ public class WxCardSpendVo extends WxCardSpend {
@Excel(name = "卡号", width = 20, orderNum = "2")
@io.swagger.annotations.ApiModelProperty(value="卡号",name="cardId")
private Long cardId;
@Excel(name = "绑定的实体卡卡号", width = 20, orderNum = "2")
@io.swagger.annotations.ApiModelProperty(value="绑定的实体卡号",name="couponPasswordId")
private Long couponPasswordId;
@Excel(name = "消费者", width = 20, orderNum = "3")
@io.swagger.annotations.ApiModelProperty(value="持有人昵称",name="onickName")
private String onickName;


+ 1
- 0
mallinkService/src/main/java/com/iformall/service/impl/WxCardSpendServiceImpl.java 查看文件

@@ -616,6 +616,7 @@ public class WxCardSpendServiceImpl implements WxCardSpendService {
WxCardInfo cardInfo = cardInfoMap.get(_wcs.getCardId()) ;
if (null != cardInfo) {
vo.setWxCardInfo(cardInfo);
vo.setCouponPasswordId(cardInfo.getCouponPasswordId());
}
}
// if (null != _wcs.getOrderId()) {


正在加载...
取消
保存