
org.joyqueue.model.query.QOperLog Maven / Gradle / Ivy
/**
* Copyright 2019 The JoyQueue 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 org.joyqueue.model.query;
import org.joyqueue.model.QKeyword;
import java.util.Date;
/**
*
* 操作日志查询条件
*
* @author liyubo4
* @create 2017-12-06 11:12
**/
public class QOperLog extends QKeyword {
/**
* 创建时间
*/
private Date createTime;
private Date beginTime;
private Date endTime;
private String erp;
/**
* 操作对象的类型,集群/程序/作业
*/
private Integer type;
private String identity;
public String getIdentity() {
return identity;
}
public void setIdentity(String identity) {
this.identity = identity;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public Date getBeginTime() {
return beginTime;
}
public void setBeginTime(Date beginTime) {
this.beginTime = beginTime;
}
public Date getEndTime() {
return endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
public String getErp() {
return erp;
}
public void setErp(String erp) {
this.erp = erp;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy