소스 검색

小程序去掉判定,先改接口

anderx 10 달 전
부모
커밋
b0922bc497
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/main/java/com/goafanti/weChat/controller/AdminReleaseApiController.java

+ 3 - 1
src/main/java/com/goafanti/weChat/controller/AdminReleaseApiController.java

@@ -86,7 +86,9 @@ public class AdminReleaseApiController extends CertifyApiController{
 			res.getError().add(buildErrorMessageParams(ErrorConstants.PARAM_EMPTY_ERROR,"用户编号"));
 			return res;
 		}
-		res.setData(publicReleaseService.checkUserArchives(uid));
+		//小程序去掉判定,先改接口
+//		res.setData(publicReleaseService.checkUserArchives(uid));
+		res.setData(true);
 		return res;
 	}