cn.herodotus.stirrup.rest.servlet.upms.controller.hr.SysOrganizationController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-module-servlet-upms Show documentation
Show all versions of rest-module-servlet-upms Show documentation
Herodotus 软件生态组件库 UPMS 功能 Servlet 环境 REST 接口模块
The newest version!
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2020-2030 郑庚伟 ZHENGGENGWEI (码匠君), Licensed under the AGPL License
*
* This file is part of Herodotus Stirrup.
*
* Herodotus Stirrup is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Herodotus Stirrup is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package cn.herodotus.stirrup.rest.servlet.upms.controller.hr;
import cn.herodotus.stirrup.core.definition.domain.Result;
import cn.herodotus.stirrup.data.crud.service.JpaWriteableService;
import cn.herodotus.stirrup.logic.upms.converter.SysOrganizationToTreeNodeConverter;
import cn.herodotus.stirrup.logic.upms.entity.hr.SysOrganization;
import cn.herodotus.stirrup.logic.upms.enums.OrganizationCategory;
import cn.herodotus.stirrup.logic.upms.service.hr.SysOrganizationService;
import cn.herodotus.stirrup.web.api.servlet.AbstractJpaWriteableController;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.Parameters;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.validation.constraints.NotNull;
import org.apache.commons.lang3.ObjectUtils;
import org.dromara.hutool.core.tree.MapTree;
import org.springframework.data.domain.Page;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Map;
/**
* Description: 单位管理接口
*
* @author : gengwei.zheng
* @date : 2021/9/21 12:19
*/
@RestController
@RequestMapping("/hr/organization")
@Tag(name = "单位管理接口")
@Validated
public class SysOrganizationController extends AbstractJpaWriteableController {
private final SysOrganizationService sysOrganizationService;
public SysOrganizationController(SysOrganizationService sysOrganizationService) {
this.sysOrganizationService = sysOrganizationService;
}
@Override
public JpaWriteableService getWriteableService() {
return this.sysOrganizationService;
}
private OrganizationCategory parseOrganizationCategory(Integer category) {
if (ObjectUtils.isEmpty(category)) {
return null;
} else {
return OrganizationCategory.get(category);
}
}
private List getSysOrganizations(Integer category) {
return sysOrganizationService.findAll(parseOrganizationCategory(category));
}
@Operation(summary = "条件分页查询单位", description = "根据动态输入的字段查询单位分页信息",
responses = {@ApiResponse(description = "单位列表", content = @Content(mediaType = "application/json", schema = @Schema(implementation = SysOrganization.class)))})
@Parameters({
@Parameter(name = "pageNumber", required = true, description = "当前页码"),
@Parameter(name = "pageSize", required = true, description = "每页显示数量"),
@Parameter(name = "category", description = "机构分类 (索引数字值)"),
})
@GetMapping("/condition")
public Result