添加注释
This commit is contained in:
@@ -26,7 +26,14 @@ public class AppController {
|
||||
|
||||
@Resource
|
||||
private UserBusinessService userBusinessService;
|
||||
|
||||
/**
|
||||
* create by: cjl
|
||||
* description:
|
||||
* 桌面菜单按钮初始化
|
||||
* create time: 2019/1/11 17:01
|
||||
* @Param: request
|
||||
* @return com.alibaba.fastjson.JSONObject
|
||||
*/
|
||||
@GetMapping(value = "/findDesk")
|
||||
public JSONObject findDesk(HttpServletRequest request) {
|
||||
JSONObject obj = new JSONObject();
|
||||
|
||||
@@ -28,7 +28,14 @@ public class AppService {
|
||||
List<App> list = appMapper.selectByExample(example);
|
||||
return list;
|
||||
}
|
||||
|
||||
/**
|
||||
* create by: cjl
|
||||
* description:
|
||||
* 桌面功能菜单初始化列表
|
||||
* create time: 2019/1/11 16:59
|
||||
* @Param: null
|
||||
* @return
|
||||
*/
|
||||
public List<App> findDesk(){
|
||||
AppExample example = new AppExample();
|
||||
example.createCriteria().andZlEqualTo("desk").andEnabledEqualTo(true);
|
||||
|
||||
Reference in New Issue
Block a user