Authored by ping

update

... ... @@ -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");
... ...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>潮流商品 | YOHO!有货</title>
... ...