package com.huimv.admin.controller; import com.huimv.admin.common.utils.Result; import com.huimv.admin.entity.GasThreshold; import com.huimv.admin.entity.ProtThreshold; import com.huimv.admin.entity.vo.GasThresholdVo; import com.huimv.admin.service.IGasThresholdService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.CrossOrigin; 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.LinkedList; import java.util.List; import java.util.Map; /** *
* 气体阈值 前端控制器 *
* * @author author * @since 2023-02-21 */ @RestController @RequestMapping("/gas-threshold") @CrossOrigin public class GasThresholdController { @Autowired private IGasThresholdService gasThresholdService; @RequestMapping("/list") public Result list(HttpServletRequest httpServletRequest, @RequestBody Map