소스 검색

转交接口BUG修复

anderx 4 년 전
부모
커밋
582d0363e4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/goafanti/customer/controller/AdminCustomerApiController.java

+ 1 - 1
src/main/java/com/goafanti/customer/controller/AdminCustomerApiController.java

@@ -1289,7 +1289,7 @@ public class AdminCustomerApiController extends BaseApiController{
 	@RequestMapping(value = "/channelCustomerDeliver", method = RequestMethod.POST)
 	public Result channelCustomerDeliver(String userIds ,String receiveId,String remarks,Integer type){
 		Result res = new Result();
-		if (StringUtils.isNotBlank(userIds)) {
+		if (StringUtils.isBlank(userIds)) {
 			res.getError().add(buildError("","用户编号不存在"));
 			return res;
 		}