/* * Copyright 2009-2016 Weibo, Inc. * * 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.weibo.model; import java.util.Date; public class OperationRecord { private Integer id; private String operator; private String type; private String groupName; private String command; private Byte status; private Date createTime; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getOperator() { return operator; } public void setOperator(String operator) { this.operator = operator == null ? null : operator.trim(); } public String getType() { return type; } public void setType(String type) { this.type = type == null ? null : type.trim(); } public String getGroupName() { return groupName; } public void setGroupName(String groupName) { this.groupName = groupName == null ? null : groupName.trim(); } public String getCommand() { return command; } public void setCommand(String command) { this.command = command == null ? null : command.trim(); } public Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } }