|
|
|
@ -21,8 +21,8 @@ import com.glxp.api.service.auth.CustomerInfoService;
|
|
|
|
|
import com.glxp.api.service.collect.RelCodeBatchService;
|
|
|
|
|
import com.glxp.api.service.collect.RelCodeDetailService;
|
|
|
|
|
import com.taobao.api.Constants;
|
|
|
|
|
import com.taobao.api.internal.util.StringUtils;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@ -317,11 +317,11 @@ public class AlihealthUtils {
|
|
|
|
|
for (String key : keys) {
|
|
|
|
|
Object value = params.get(key);
|
|
|
|
|
if (value instanceof String) {
|
|
|
|
|
if (StringUtils.areNotEmpty(key, (String) value)) {
|
|
|
|
|
if (StringUtils.isNotEmpty(key) && StringUtils.isNotEmpty((CharSequence) value)) {
|
|
|
|
|
query.append(key).append(value);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (!Objects.isNull(value)) {
|
|
|
|
|
if (StringUtils.isNotEmpty(key) && !Objects.isNull(value)) {
|
|
|
|
|
query.append(key).append(value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|