Commit cb8335224f93986c0f21c19aeeb602db020a534a
1 parent
c24bc848fc
Exists in
master
添加用户controller
Showing 1 changed file with 20 additions and 0 deletions
center.manager/src/main/java/com/lyms/cm/controller/sys/SysUsersController.java
View file @
cb83352
| 1 | +package com.lyms.cm.controller.sys; | |
| 2 | + | |
| 3 | + | |
| 4 | +import org.springframework.stereotype.Controller; | |
| 5 | +import org.springframework.web.bind.annotation.RequestMapping; | |
| 6 | +import com.lyms.web.controller.BaseController; | |
| 7 | + | |
| 8 | +/** | |
| 9 | + * <p> | |
| 10 | + * 用户表 前端控制器 | |
| 11 | + * </p> | |
| 12 | + * | |
| 13 | + * @author maliang | |
| 14 | + * @since 2017-03-02 | |
| 15 | + */ | |
| 16 | +@Controller | |
| 17 | +@RequestMapping("/sysUsers") | |
| 18 | +public class SysUsersController extends BaseController { | |
| 19 | + | |
| 20 | +} |