站点基本信息接口完善等

This commit is contained in:
mi9688
2024-11-05 16:04:51 +08:00
parent e18e832250
commit 5c0027abeb
27 changed files with 102 additions and 870 deletions

View File

@ -80,7 +80,7 @@ public class Project extends BaseEntity
@ApiModelProperty("项目介绍")
private String introduce;
/** 删除状态[1删除,-1未删除] */
/** 删除状态[2删除,0未删除] */
private Long delFlag;
/** 项目介绍 */

View File

@ -342,6 +342,7 @@ public class ProjectServiceImpl implements IProjectService
.update();
//查询项目下的机构
List<SysDept> projectDeptList = new LambdaQueryChainWrapper<>(sysDeptMapper)
.select(SysDept::getDeptId)
.eq(SysDept::getProjectId, projectId)
.eq(SysDept::getDelFlag, "0")
.list();