BuildController.java
553 Bytes
package com.huaheng.pc.tool.build;
import com.huaheng.framework.web.controller.BaseController;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* build 表单构建
*
* @author huaheng
*/
@Controller
@RequestMapping("/tool/build")
public class BuildController extends BaseController {
private String prefix = "tool/build";
@GetMapping()
public String build() {
return prefix + "/build";
}
}