Commit f44e6297 by qwmqiuwenmin

fix

parent 1597129f
......@@ -888,7 +888,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
public String addExternal(ExternalUserDTO dto) {
String wxUserId = dto.getWxUserId();
String wxEnterpriseId = dto.getWxEnterpriseId();
String name = dto.getName();
String name = StringUtils.isBlank(dto.getName())?"--":dto.getName();
String createTime = dto.getAddCreateTime();
String unionId = dto.getUnionId();
String externalUserId = dto.getExternalUserId();
......
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