package com.farriver.bwf.data.transferobject.viewmodel.system; import java.util.Date; public class SytemLog { private String id; private String source; private String module; private String logtype; private String message; private Object details; private Date actiontime; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getSource() { return source; } public void setSource(String source) { this.source = source; } public String getModule() { return module; } public void setModule(String module) { this.module = module; } public String getLogtype() { return logtype; } public void setLogtype(String logtype) { this.logtype = logtype; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public Object getDetails() { return details; } public void setDetails(Object details) { this.details = details; } public Date getActiontime() { return actiontime; } public void setActiontime(Date actiontime) { this.actiontime = actiontime; } }