1. 升级 3.0.38

补全业务附件表缺失的 api
 支持 api 获取附件二进制数据
 新增业务附件表状态信息
 补全部分存在嵌套结构的 bpm api 缺失数据
This commit is contained in:
chenbowen
2025-09-25 19:24:06 +08:00
parent 70c8d0d5f7
commit ea04d0dee6
28 changed files with 518 additions and 67 deletions

View File

@@ -23,6 +23,16 @@ public class AdminUserRespDTO implements VO {
@Schema(description = "部门编号列表", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
private List<Long> deptIds;
@Schema(description = "部门编号", requiredMode = Schema.RequiredMode.NOT_REQUIRED, example = "1")
private Long deptId;
public Long getDeptId() {
if (deptIds != null && !deptIds.isEmpty()) {
return deptIds.get(0);
}
return null;
}
@Schema(description = "岗位编号数组", requiredMode = Schema.RequiredMode.REQUIRED, example = "[1, 3]")
private Set<Long> postIds;