|
@@ -22,6 +22,7 @@ import com.alibaba.fastjson.JSONObject;
|
|
|
import io.swagger.annotations.*;
|
|
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
+
|
|
|
import javax.validation.Valid;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
@@ -38,7 +39,6 @@ import org.springblade.manager.entity.ProjectInfo;
|
|
|
import org.springblade.manager.feign.ArchiveTreeContractClient;
|
|
|
import org.springblade.manager.feign.ProjectClient;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.scheduling.annotation.Async;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
@@ -452,4 +452,14 @@ public class ArchivesAutoController extends BladeController {
|
|
|
return R.data(archivesAutoService.getCarrierTypeByDict());
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取档案销毁人列表
|
|
|
+ */
|
|
|
+ @GetMapping("/getArchiveDestroyUser")
|
|
|
+ @ApiOperationSupport(order = 7)
|
|
|
+ @ApiOperation(value = "获取档案销毁人列表", notes = "获取档案销毁人列表")
|
|
|
+ public R getArchiveDestroyUser(){
|
|
|
+ return R.data(archivesAutoService.getArchiveDestroyUser());
|
|
|
+ }
|
|
|
+
|
|
|
}
|