1234567891011121314151617181920212223242526272829303132333435 |
- package com.huimv.admin.controller;
- import com.huimv.admin.common.utils.Result;
- import com.huimv.admin.service.IProtWarningInfoService;
- 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.Map;
- /**
- * <p>
- * 前端控制器
- * </p>
- *
- * @author author
- * @since 2023-02-14
- */
- @RestController
- @RequestMapping("/prot-warning-info")
- @CrossOrigin
- public class ProtWarningInfoController {
- @Autowired
- private IProtWarningInfoService protWarningInfoService;
- @RequestMapping("/list")
- public Result list(HttpServletRequest httpServletRequest, @RequestBody Map<String,String> paramsMap) {
- return protWarningInfoService.list(httpServletRequest,paramsMap);
- }
- }
|