希晓会员查询会员详情

This commit is contained in:
2023-11-27 15:50:26 +08:00
parent 0ca1542f67
commit f656203530
6 changed files with 13 additions and 7 deletions

View File

@@ -364,6 +364,11 @@ public class MemberBasicInfoServiceImpl implements IMemberBasicInfoService {
return null;
}
if (StringUtils.equals("35", vo.getMerchantId())) {
// 如果会员属于希晓那么merchantId默认为希晓的运营商id
merchantId = "35";
}
try {
BigDecimal totalAccountAmount = BigDecimal.ZERO;
BigDecimal principalBalance = BigDecimal.ZERO;

View File

@@ -24,6 +24,9 @@ public class MemberVO {
*/
private String memberId;
/**
* 会员所属一级运营商
*/
private String merchantId;
/**