Browse Source

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

anderx 9 months ago
parent
commit
b0922bc497

+ 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;
 	}