Commit 320ab33a by fanjiaxin

联调问题处理

parent 9bd38d2c
Pipeline #71626 passed with stages
in 57 seconds
......@@ -503,18 +503,6 @@ public class DrmSharerConfig {
return null != sharerInfo ? sharerInfo.getSharerAppid() : null;
}
private String getOpenIdBySharerAppid(String sharerAppid) {
LambdaQueryWrapper<SharerInfo> sharerInfoLqw = Wrappers.lambdaQuery();
sharerInfoLqw.select(SharerInfo::getOpenId);
sharerInfoLqw.eq(SharerInfo::getSharerAppid, sharerAppid);
sharerInfoLqw.last("LIMIT 1");
SharerInfo sharerInfo = sharerInfoMapper.selectOne(sharerInfoLqw);
if (null != sharerInfo && StringUtils.isNotBlank(sharerInfo.getOpenId())) {
return sharerInfo.getOpenId();
}
return null;
}
private void updateSharerInfo(SharerInfo sharerInfo, String commissionRatio) {
String openId = sharerInfo.getOpenId();
if (StringUtils.isNotBlank(openId)) {
......
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