Package com.lanyuan.entity

Examples of com.lanyuan.entity.Log


    } else if (methodName.indexOf("delete") > -1) {
      opertype = "delete操作";
    }
    if(!Common.isEmpty(opertype)&&className.indexOf("UserLoginList")==-1){
      Long time = end - start;
      Log log = new Log();
      log.setUsername(user);
      log.setModule(name);
      log.setAction(opertype);
      log.setActionTime(time.toString());
      log.setUserIP(ip);
      logDao.add(log);
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of com.lanyuan.entity.Log

Copyright © 2018 www.massapicom. 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.