sgj
5 天以前 824d4e6be22a1d101897bf1be575bb5e3ed33845
fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/security/eventInfo/EventInfoController.java
@@ -7,6 +7,7 @@
import com.fzzy.igds.domain.EventInfo;
import com.fzzy.sys.manager.security.eventInfo.EventInfoManager;
import lombok.extern.slf4j.Slf4j;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@@ -26,6 +27,7 @@
    @Resource
    private EventInfoManager eventInfoManager;
    @RequiresPermissions("web:security:eventInfo:view")
    @GetMapping
    public String getEventInfo(
            Model model) {
@@ -47,6 +49,7 @@
     * @param param
     * @return
     */
    @RequiresPermissions("web:security:eventInfo:list")
    @RequestMapping("/pageData")
    @ResponseBody
    public PageResponse<Page<EventInfo>> pageData(@RequestBody IgdsBaseParam param) {