package com.box.controller;

import javax.servlet.http.HttpServletRequest;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import com.box.entity.DbAdmin;
import com.box.service.AdminLogService;
import com.box.service.AdminService;
import com.box.utils.LayuiResult;

/**
 * @author 日志控制器
 *
 */
@Controller
@RequestMapping("/adminlog")
public class AdminLogController {
	
	@Autowired
	private AdminLogService logService;
	
	@Autowired
	private AdminService adminService;
	/**
	 * 
	 * 业务逻辑
	 * 
	 * 
	 */
	//日志列表
	@RequestMapping(value="/getadminlogList",method={RequestMethod.GET,RequestMethod.POST})
	@ResponseBody
	public  LayuiResult getAdminLogList(Integer page,Integer limit){
		
		LayuiResult result = logService.getAdminLogList(page, limit);
		return result ;
	}
	
	//单个删除
	@RequestMapping(value="/delLogByid",method={RequestMethod.GET,RequestMethod.POST})
	@ResponseBody
	public  LayuiResult delLogByid(String id){
		
		LayuiResult result = logService.delLogByid(id);
		return result ;
	}
	
	//批量删除
	@RequestMapping(value="/deladminlogAll/{adminlogStr}",method={RequestMethod.GET,RequestMethod.POST})
	@ResponseBody
	public  LayuiResult deladminlogAll(@PathVariable("adminlogStr") String adminlogStr){
		
		LayuiResult result = logService.deladminlogAll(adminlogStr);
		return result ;
	}
	/**
	 * 
	 * 页面跳转
	 * 
	 * 
	 */
	@RequestMapping(value="/page/adminlog",method={RequestMethod.GET,RequestMethod.POST})	
	public  String  showAdminLogPage(Model model){
		DbAdmin dbAdminItems = adminService.getDbAdminItems();
		if(dbAdminItems!=null){
			model.addAttribute("admin", dbAdminItems );
			return "adminlog/adminlog" ;
		}else{
			return "error/404";
		}
	
		
	
	}
}
最近下载更多
TY0165  LV20 6月24日
pureshyness  LV6 2022年5月22日
wanglinddad  LV55 2022年4月9日
goohodo  LV8 2022年3月2日
xiayan  LV6 2021年12月7日
ljm2s  LV3 2021年9月23日
芜湖1234  LV2 2021年6月14日
xiaoxiexie  LV13 2021年5月16日
最代码-宋家辉  LV61 2021年5月1日
手落弦崩  LV13 2021年4月19日
最近浏览更多
xianyu091012  LV4 11月18日
yellow_flowers  LV8 7月8日
TY0165  LV20 6月24日
花朝廿五  LV1 6月10日
goccgoccgocc  LV4 5月9日
李俊雄  LV3 5月8日
sz1111111  LV2 3月26日
WBelong  LV8 2023年12月19日
周敏国  LV9 2023年9月21日
矿泉水  LV30 2023年8月20日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友