1. 升级 3.0.38
补全业务附件表缺失的 api 支持 api 获取附件二进制数据 新增业务附件表状态信息 补全部分存在嵌套结构的 bpm api 缺失数据
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user