You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
468 B
17 lines
468 B
![]()
2 months ago
|
package com.kelp.business;
|
||
|
|
||
|
import org.springframework.stereotype.Controller;
|
||
|
import org.springframework.ui.Model;
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
|
||
|
@Controller
|
||
|
public class GuanYuWoMenLianXiController {
|
||
|
private final String prefix = "business/guanyuwomenlianxi";
|
||
|
|
||
|
@RequestMapping({"/" + prefix})
|
||
|
public String index(Model model) {
|
||
|
model.addAttribute("prefix", "/" + prefix);
|
||
|
return prefix + "/index";
|
||
|
}
|
||
|
}
|