xiejun
2024-09-06 1615c6851b507867f9090f8cafcb1a32d1dad6bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.vci.web.controller;
 
import com.vci.starter.web.pagemodel.BaseQueryObject;
import com.vci.starter.web.pagemodel.DataGrid;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
 
import javax.annotation.Resource;
 
/**
 * 在线用户控制
 * @author weidy
 */
@Controller
@RequestMapping("/webOnlineUserController")
public class WebOnlineUserController{
 
    /**
     *  在线用户列表
     * @return Json
     */
    @RequestMapping("/dataGrid")
    @ResponseBody
    public DataGrid dataGrid(BaseQueryObject baseQueryObject){
        return new DataGrid();
        //return userDao.dataGridOnline(baseQueryObject.getConditionMap(), baseQueryObject.getPageHelper());
    }
}