Package org.beangle.ems.log
Interface BusinessLog
-
- All Superinterfaces:
Entity<Long>,Serializable
- All Known Implementing Classes:
BusinessLogBean
public interface BusinessLog extends Entity<Long>
业务日志- Version:
- $Id: BusinessLog.java Jun 27, 2011 7:28:23 PM chaostone $
- Author:
- chaostone
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAgent()客户端代理BusinessLogDetailgetDetail()详细内容StringgetEntry()操作的系统入口StringgetIp()操作地址DategetOperateAt()操作时间StringgetOperation()操作内容StringgetOperator()操作人员StringgetResource()操作资源-
Methods inherited from interface org.beangle.commons.entity.Entity
getId, isPersisted, isTransient, setId
-
-
-
-
Method Detail
-
getOperator
String getOperator()
操作人员
-
getOperation
String getOperation()
操作内容
-
getResource
String getResource()
操作资源
-
getOperateAt
Date getOperateAt()
操作时间
-
getIp
String getIp()
操作地址
-
getEntry
String getEntry()
操作的系统入口
-
getAgent
String getAgent()
客户端代理
-
getDetail
BusinessLogDetail getDetail()
详细内容
-
-