package com.tanpu.feo.feojob.controller; import com.tanpu.feo.feojob.dto.EmployeeDTO; import com.tanpu.feo.feojob.service.EmployeeService; 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/employee") @Slf4j public class EmployeeController { @Autowired private EmployeeService employeeService; }