Commit 730d16af by fsn

修改控制器的模板,添加列表方法

parent 0f53e593
......@@ -41,6 +41,15 @@ public class ${context.bizEnBigName}Controller extends BaseController {
}
/**
* 获取${context.bizChName}列表
*/
@RequestMapping(value = "/list")
@ResponseBody
public Object list(String condition) {
return null;
}
/**
* 新增${context.bizChName}
*/
@RequestMapping(value = "/add")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment