소스 검색

账户列表屏蔽停投账户

yumeng 5 년 전
부모
커밋
68110d7f2c
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      jeecg-boot-module-system/src/main/java/org/jeecg/modules/ctop/controller/UserAllocationController.java

+ 1 - 2
jeecg-boot-module-system/src/main/java/org/jeecg/modules/ctop/controller/UserAllocationController.java

@@ -182,10 +182,9 @@ public class UserAllocationController {
     public Result<List<UserAllocation>> getAccountListByProjectId(Long projectId) {
         Result<List<UserAllocation>> result = new Result<>();
         try {
-
             QueryWrapper<UserAllocation> queryWrapper = new QueryWrapper<>();
             queryWrapper.eq("project_id", projectId);
-
+            queryWrapper.eq("account_status", 0);
            /* if (!Check.isNull(project)) {
                  Project project = projectService.getById(projectId);
                  queryWrapper.eq("media_id", project.getMediaId());