Examples of CgreportConfigHeadEntity


Examples of org.jeecgframework.web.cgreport.entity.core.CgreportConfigHeadEntity

  public AjaxJson doBatchDel(String ids,HttpServletRequest request){
    AjaxJson j = new AjaxJson();
    message = "动态报表配置抬头删除成功";
    try{
      for(String id:ids.split(",")){
        CgreportConfigHeadEntity cgreportConfigHead = systemService.getEntity(CgreportConfigHeadEntity.class, id);
        cgreportConfigHeadService.delete(cgreportConfigHead);
        systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO);
      }
    }catch(Exception e){
      e.printStackTrace();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.