Commit a95ac378 by qwmqiuwenmin

fix

parent 53b9b965
......@@ -244,6 +244,9 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
public String addMemberUnionidRelatedNew(MemberUnionidRelatedDTO dto) {
//拼装参数
dto = getMemberUnionidRelatedDTO(dto);
if(dto == null){
return "";
}
//新增成员和外部联系人的关系
String memberUnionId = insertMemberUnionIdRelated(dto);
......@@ -330,6 +333,9 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
}
private String insertMemberUnionIdRelated(MemberUnionidRelatedDTO dto) {
if(dto == null){
return "";
}
String wxUserId = dto.getWxUserId();
String wxEnterpriseId = dto.getWxEnterpriseId();
String name = dto.getExternalName();
......
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