public class LogServiceImpl extends Object implements LogService
| 构造器和说明 |
|---|
LogServiceImpl() |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
attachClean(Log instance) |
void |
attachDirty(Log instance) |
void |
delete(Log persistentInstance) |
List |
findAll() |
List<Log> |
findByDelete(Object delete) |
List<Log> |
findByExample(Log instance) |
List<Log> |
findByGoalid(Object goalid) |
Log |
findById(Integer id) |
List |
findByProperty(String propertyName,
Object value) |
List<Log> |
findByType(Object type) |
List<Log> |
findByUserid(Object userid) |
LogDAO |
getLogDAO() |
void |
insert(int userid,
int goalid,
String type,
String value)
写日志
|
void |
insert(int goalid,
String type)
写日志
|
void |
insert(int goalid,
String type,
String value)
写日志
|
void |
insert(String type)
写日志
|
void |
insert(String type,
String value)
写日志
|
Log |
merge(Log detachedInstance) |
void |
save(Log transientInstance) |
void |
setLogDAO(LogDAO logDAO) |
public LogDAO getLogDAO()
public void setLogDAO(LogDAO logDAO)
public void save(Log transientInstance)
save 在接口中 LogServicepublic void delete(Log persistentInstance)
delete 在接口中 LogServicepublic Log findById(Integer id)
findById 在接口中 LogServicepublic List<Log> findByExample(Log instance)
findByExample 在接口中 LogServicepublic List findByProperty(String propertyName, Object value)
findByProperty 在接口中 LogServicepublic List<Log> findByUserid(Object userid)
findByUserid 在接口中 LogServicepublic List<Log> findByType(Object type)
findByType 在接口中 LogServicepublic List<Log> findByGoalid(Object goalid)
findByGoalid 在接口中 LogServicepublic List<Log> findByDelete(Object delete)
findByDelete 在接口中 LogServicepublic List findAll()
findAll 在接口中 LogServicepublic Log merge(Log detachedInstance)
merge 在接口中 LogServicepublic void attachDirty(Log instance)
attachDirty 在接口中 LogServicepublic void attachClean(Log instance)
attachClean 在接口中 LogServicepublic void insert(int goalid,
String type,
String value)
LogServiceinsert 在接口中 LogServicegoalid - 操作的目标idtype - 日志分类,传入 SystemConfig.xml中logTypeList节点配置的type-程序内调用的名字value - 描述的内容,自动截取前20个字符public void insert(String type, String value)
LogServiceinsert 在接口中 LogServicetype - 日志分类,传入 SystemConfig.xml中logTypeList节点配置的type-程序内调用的名字value - 描述的内容,自动截取前20个字符public void insert(String type)
LogServiceinsert 在接口中 LogServicetype - 日志分类,传入 SystemConfig.xml中logTypeList节点配置的type-程序内调用的名字public void insert(int goalid,
String type)
LogServiceinsert 在接口中 LogServicegoalid - 操作的目标idtype - 日志分类,传入 SystemConfig.xml中logTypeList节点配置的type-程序内调用的名字public void insert(int userid,
int goalid,
String type,
String value)
LogServiceinsert 在接口中 LogServiceuserid - 此日志所属的用户idgoalid - 操作的目标idtype - 日志分类,传入 SystemConfig.xml中logTypeList节点配置的type-程序内调用的名字value - 描述的内容,自动截取前20个字符