package com.fdkankan.engineering.controller; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.fdkankan.engineering.entity.Engineering; import com.fdkankan.engineering.service.IEngineeringService; import com.fdkankan.web.request.RequestBase; import com.fdkankan.web.response.ResultData; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *
* 前端控制器 *
* * @author * @since 2022-09-09 */ @RestController @RequestMapping("/service/engineering") public class EngineeringController { @Autowired private IEngineeringService engineeringService; @PostMapping("/pageList") public Page pageList(@RequestBody RequestBase param){ Page