package cn.autocode;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import cn.base.aspect.OperateType;
import cn.base.bean.BaseAction;
import cn.base.excel.ExcelCol;
import cn.base.excel.ExportEngine;
import cn.base.util.CommUtils;
import cn.base.util.Constants;
import cn.base.util.LogConstants;
import cn.base.util.StringUtil;
import cn.base.util.Struts2Utils;

@SuppressWarnings({"all"})
@Component("smallDEMOAction")
public class DemoAction extends BaseAction{
	private static final long serialVersionUID = 1L;
	private static Logger iLog = Logger.getLogger(DemoAction.class);
	
	@Autowired
	private DemoService service;
	
	/**
	 * ҳ
	 */
	/*
	@OperateType(value = LogConstants.LOG_QUERY ,info ="listDemoByPage")
	public void listDemoByPage(){
		Map map = Struts2Utils.getRequestParameterMap();
		try {
			int page = Integer.parseInt(Struts2Utils.getParameter("page"));
			int rows = Integer.parseInt(Struts2Utils.getParameter("rows"));
			int start = ( (page == 0 ?  1 : page ) - 1) * rows ;
			map.put("start",start );
			map.put("limit",rows );
			Struts2Utils.renderJson(this.service.listDemoByPage(map));
		} catch (Exception e) {
			e.printStackTrace();
			iLog.error("DemoAction-listDemoByPage-error:" +e);
			Struts2Utils.renderJson(null);
		}
	}
	*/
	
	/**
	 * ѯ
	 */
	/*
	@OperateType(value = LogConstants.LOG_QUERY ,info ="count_Demo")
	public void count_Demo(){
		Map map = Struts2Utils.getRequestParameterMap();
		try {
			Struts2Utils.renderJson(this.service.count_Demo(map));
		} catch (Exception e) {
			e.printStackTrace();
			iLog.error("DemoAction-count_Demo-error:" +e);
			Struts2Utils.renderJson(null);
		}
	}
	*/
	
	/**
	 * ѯ Demo
	 */
	/*
	@OperateType(value = LogConstants.LOG_GET ,info ="query_Demo")
	public void query_Demo(){
		Map map = Struts2Utils.getRequestParameterMap();
		try {
			Struts2Utils.renderJson(this.service.query_Demo(map));
		} catch (Exception e) {
			e.printStackTrace();
			iLog.error("DemoAction-query_Demo-error:" +e);
			Struts2Utils.renderJson(null);
		}
	}
	*/
	
	/**
	 * ѯ һDemo
	 */
	/*
	@OperateType(value = LogConstants.LOG_GET ,info ="get_Demo")
	public void get_Demo(){
		Map map = Struts2Utils.getRequestParameterMap();
		try {
			Struts2Utils.renderJson(this.service.get_Demo(map));
		} catch (Exception e) {
			e.printStackTrace();
			iLog.error("DemoActionquery_Demo-error:" +e);
			Struts2Utils.renderJson(null);
		}
	}
	*/
	
	/**
	 * ɾ
	 */
	/*
	@OperateType(value = LogConstants.LOG_DELETE ,info ="deleteDemo")
	public void delete_Demo(){
		Map map = Struts2Utils.getRequestParameterMap();
		try {
			if(!CommUtils.isEmpty(map)){
				int result = service.delete_Demo(map);
				Struts2Utils.renderJson(Constants.SUCCESS);
			}else{
				 throw new Exception("ȷѡɾ¼!!!");
			}
		} catch (Exception e) {
			e.printStackTrace();
			iLog.error("DemoAction-delete_Demo-error:" +e);
			Struts2Utils.renderJson(null);
		}
	}
	*/

	/**
	 * 
	 */
	/*
	@OperateType(value = LogConstants.LOG_ADD ,info ="insert_Demo")
	public void insert_Demo(){
		Map map = Struts2Utils.getRequestParameterMap();
		try {
			//PKI
			service.insert_Demo(map);
			Struts2Utils.renderJson(Constants.SUCCESS);
		} catch (Exception e) {
			e.printStackTrace();
			iLog.error("DemoAction-listDemoByPage()-error:" +e);
			Struts2Utils.renderJson(null);
		}
	}
	*/
	
	/**
	 * ޸
	 */
	/*
	@OperateType(value = LogConstants.LOG_UPDATE ,info ="update_Demo")
	public void update_Demo(){
		Map map = Struts2Utils.getRequestParameterMap();
		try {
			int result = service.update_Demo(map);
			Struts2Utils.renderJson(Constants.SUCCESS);
		} catch (Exception e) {
			e.printStackTrace();
			iLog.error("DemoAction-update_Demo-error: " +e);
			Struts2Utils.renderJson(null);
		}
	}
	*/
	
	/**
	 * ɾ
	 */
	/*
	@OperateType(value = LogConstants.LOG_DELETE ,info ="batch_delete_Demo")
	public void batch_delete_Demo(){
		Map map = Struts2Utils.getRequestParameterMap();
		try {
			Map m = new HashMap();
			m.put("keyword", map.get("keyword").toString());
			int result = service.batch_delete_Demo(m);
			Struts2Utils.renderJson(Constants.SUCCESS);
		} catch (Exception e) {
			e.printStackTrace();
			iLog.error("DemoAction-batch_delete_Demo-error:" +e);
			Struts2Utils.renderJson(null);
		}
	}
	*/
	
	/**
	 * Excel
	 */
	/*
	@OperateType(value = LogConstants.LOG_EXPORT ,info ="exoprtExcel")
	public void exoprtExcel(){
		try {
			Map map = Struts2Utils.getRequestParameterMap();
			map.put("start",0 );
			map.put("limit",5000);
			map = service.exportDemo(map);
			ExcelCol[] cells = new ExcelCol[2];
			cells[0] = new ExcelCol();
			cells[0].setColKey("ֶ");
			cells[0].setColName("ֶ");
			cells[1] = new ExcelCol();
			cells[1].setColKey("ֶ");
			cells[1].setColName("ֶ");
			Map params = new HashMap();
			params.put("fileName", "");
			params.put("sheetName", "");
			params.put("header", "");	
			new ExportEngine().exportCommData(params, cells, (ArrayList)map.get("rows"), Struts2Utils.getResponse());
		} catch (Exception e) {
			e.printStackTrace();
			iLog.error("DemoAction-exoprtExcel-error:" +e);
			
		}
	}
	*/
}
