Commit 079bba7c by 田超

Merge branch 'revert-93d27934' into 'master'

Revert "Merge branch 'feature/1004412' into 'master'"

See merge request rays/pcloud-book!1224
parents 93d27934 c1a7c45e
package com.pcloud.book.book.vo; package com.pcloud.book.book.vo;
import java.math.BigDecimal;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.Data; import lombok.Data;
...@@ -29,7 +27,4 @@ public class QrCodeVO { ...@@ -29,7 +27,4 @@ public class QrCodeVO {
@ApiModelProperty("公众号码id") @ApiModelProperty("公众号码id")
private Long sceneId; private Long sceneId;
@ApiModelProperty("销售额")
private BigDecimal saleMoney;
} }
...@@ -278,38 +278,4 @@ public class TradeConsr { ...@@ -278,38 +278,4 @@ public class TradeConsr {
} }
return new ArrayList<>(); return new ArrayList<>();
} }
/**
* 获取rays码销售额
* @param bookGroupIds
* @return
*/
public Map<Long, BigDecimal> getGroupListSaleInfo(List<Long> bookGroupIds) {
if (CollUtil.isEmpty(bookGroupIds)) {
return new HashMap<>();
}
try {
return ResponseHandleUtil.parseMap(orderFormService.getGroupListSaleInfo(bookGroupIds), Long.class,BigDecimal.class);
} catch (Exception e) {
LOGGER.error("查询rays码销售额失败.[getGroupListSaleInfo]:{}", e.getMessage(), e);
}
return new HashMap<>();
}
/**
* 获取二维码销售额
* @param sceneIds
* @return
*/
public Map<Long, BigDecimal> getSceneListSaleInfo(List<Long> sceneIds) {
if (CollUtil.isEmpty(sceneIds)) {
return new HashMap<>();
}
try {
return ResponseHandleUtil.parseMap(orderFormService.getSceneListSaleInfo(sceneIds), Long.class,BigDecimal.class);
} catch (Exception e) {
LOGGER.error("查询二维码销售额失败.[getSceneListSaleInfo]:{}", e.getMessage(), e);
}
return new HashMap<>();
}
} }
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