DepartmentController.java 888 Bytes
Newer Older
吴泽佳's avatar
吴泽佳 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
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;

}