/* * Copyright 2014-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.rockagen.gnext.po.nosql; import java.util.Date; /** * Operation log * @author ra * @since JDK1.7 */ public class OpLog { private String id; private String username; private String action; private Date startAt; private Date endAt; private Long times; private String ip; private Integer result; private String message; private String userType; private String userReferer; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getAction() { return action; } public void setAction(String action) { this.action = action; } public Date getStartAt() { return startAt; } public void setStartAt(Date startAt) { this.startAt = startAt; } public Date getEndAt() { return endAt; } public void setEndAt(Date endAt) { this.endAt = endAt; } public Long getTimes() { return times; } public void setTimes(Long times) { this.times = times; } public String getIp() { return ip; } public void setIp(String ip) { this.ip = ip; } public String getUserType() { return userType; } public void setUserType(String userType) { this.userType = userType; } public String getUserReferer() { return userReferer; } public void setUserReferer(String userReferer) { this.userReferer = userReferer; } public Integer getResult() { return result; } public void setResult(Integer result) { this.result = result; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } }