...
|
...
|
@@ -77,6 +77,11 @@ public class UnionServiceImpl implements IUnionService { |
|
|
log.warn("clickUnion error because union_type is empty with param is {}", request);
|
|
|
return new UnionResponse(201, "union_type is empty");
|
|
|
}
|
|
|
UnionTypeModel m = UnionConstant.unionTypeMap.get(Integer.parseInt(request.getUnion_type()));
|
|
|
if (m == null) {
|
|
|
log.warn("clickUnion error because union_type is error with param is {}", request);
|
|
|
return new UnionResponse(201, "union_type is error");
|
|
|
}
|
|
|
if (StringUtils.isEmpty(request.getCallbackurl())) {
|
|
|
log.warn("clickUnion error because callbackurl is empty with param is {}", request);
|
|
|
return new UnionResponse(201, "callbackurl is empty");
|
...
|
...
|
|