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