package com.fzzy.igds.dzhwk.controller; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.RequestMapping; /** * @Description */ @Slf4j @Controller @RequestMapping("/dzhwk") public class WebController { private static final String prefix = "dzhwk/"; /** * 分管领导首页 * @param view * @return */ @RequestMapping("/index") public String leaderIndex(ModelMap view) { return prefix + "index"; } }