济菏高速数据中心代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
2.1 KiB

package com.zc.business.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
import java.util.List;
import java.util.Map;
/**
* 高速云事件分析查询对象
*
* @author ruoyi
* @date 2024-08-19
*/
public class DcSdhsEventQuery
{
private static final long serialVersionUID = 1L;
/** 方向 */
private String direction;
/** 类型 0年 1月 2日*/
private String type;
8 months ago
/** 开始时间 */
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") //接收时间类型
private Date startTime;
8 months ago
/** 结束时间 */
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") //接收时间类型
8 months ago
private Date endTime;
/** 需要导出的键 */
private List<String> exportKey;
public String getDirection() {
return direction;
}
public void setDirection(String direction) {
this.direction = direction;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Date getStartTime() {
return startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
8 months ago
public Date getEndTime() {
return endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
public List<String> getExportKey() {
return exportKey;
}
public void setExportKey(List<String> exportKey) {
this.exportKey = exportKey;
}
@Override
public String toString() {
return new ToStringBuilder(this)
.append("direction", direction)
.append("type", type)
.append("startTime", startTime)
8 months ago
.append("endTime", endTime)
.append("exportKey", exportKey)
.toString();
}
}