Переглянути джерело

账户列表屏蔽停投账户

yumeng 5 роки тому
батько
коміт
68110d7f2c

+ 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());