package com.tanpu.feo.feojob.controller; import com.tanpu.feo.feojob.dto.DepartmentDTO; import com.tanpu.feo.feojob.service.DepartmentService; import com.github.pagehelper.Page; import com.github.pagehelper.PageHelper; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.transaction.annotation.Transactional; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; import java.util.List; /** * 部门信息表 Controller * * @author zejia zj wu 2021年05月18日 * @version 1.0 */ @RestController @Api(tags = "部门信息表") @RequestMapping(value = "v1/department") @Slf4j public class DepartmentController { @Autowired private DepartmentService departmentService; }