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());
|
}
|
}
|