package com.huimv.cattle.controller; import com.huimv.cattle.pojo.IndustryOutput; import com.huimv.cattle.service.IndustryOutputService; import com.huimv.common.utils.Result; 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; import javax.servlet.http.HttpServletRequest; import java.util.Map; /** *
* 前端控制器 *
* * @author zn * @since 2022-12-15 */ @RestController @RequestMapping("/v1.0.0/industryOutput") public class IndustryOutputController { @Autowired private IndustryOutputService industryOutputService; @PostMapping("/getIndustryOutput") public Result getIndustryOutput(HttpServletRequest request, @RequestBody Map