com.alibaba.dts.common.domain.store.Operation Maven / Gradle / Ivy
package com.alibaba.dts.common.domain.store;
import java.util.Date;
/**
* 操作记录
*
* @author 陆昆
* @create 2017-09-11 下午3:39
**/
public class Operation {
/** 主键 */
private long id;
/** 创建时间 */
private Date gmtCreate;
/** 修改时间 */
private Date gmtModified;
/** 操作前内容 **/
private String content;
/** 操作人 **/
private String operator;
/** 操作类型 **/
private String operateType;
/** 搜索关键字 **/
private String searchKey;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public Date getGmtCreate() {
return gmtCreate;
}
public void setGmtCreate(Date gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Date getGmtModified() {
return gmtModified;
}
public void setGmtModified(Date gmtModified) {
this.gmtModified = gmtModified;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getOperator() {
return operator;
}
public void setOperator(String operator) {
this.operator = operator;
}
public String getOperateType() {
return operateType;
}
public void setOperateType(String operateType) {
this.operateType = operateType;
}
public String getSearchKey() {
return searchKey;
}
public void setSearchKey(String searchKey) {
this.searchKey = searchKey;
}
}