From b48be73219c84cf00f4fbbabe6ea31f6e511c4a9 Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期一, 07 七月 2025 09:54:05 +0800 Subject: [PATCH] 功能改造 --- multi-system/src/main/java/com/gkhy/exam/system/domain/vo/SysDeptSaveDTOReq.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/multi-system/src/main/java/com/gkhy/exam/system/domain/vo/SysDeptSaveDTOReq.java b/multi-system/src/main/java/com/gkhy/exam/system/domain/vo/SysDeptSaveDTOReq.java index d19f1fe..08aea38 100644 --- a/multi-system/src/main/java/com/gkhy/exam/system/domain/vo/SysDeptSaveDTOReq.java +++ b/multi-system/src/main/java/com/gkhy/exam/system/domain/vo/SysDeptSaveDTOReq.java @@ -23,6 +23,10 @@ @ApiModelProperty("祖级列表") private String ancestors; + /** 显示顺序 */ + @ApiModelProperty("显示顺序") + private Integer orderNum; + /** 部门名称 */ @ApiModelProperty("部门名称") @NotBlank(message ="部门名称不能为空" ) @@ -43,4 +47,11 @@ @ApiModelProperty(value = "删除条款id") private List<Long> delCaluseIds; + @ApiModelProperty("是否智能分配1是2否") + @NotBlank(message = "是否智能分配不能为空") + private String responsType; + + @ApiModelProperty("负责部门id") + private List<Long> childDeptIds; + } -- Gitblit v1.9.2