package com.iailab.module.data.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2023年06月28日 09:19:00
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Schema(description = "运行时长")
|
public class FeignQueryPointDTO implements Serializable {
|
|
@Schema(description = "测点编号")
|
private String pointCode;
|
|
@Schema(description = "类型")
|
private String type;
|
|
@Schema(description = "开始时间")
|
private Date startTime;
|
|
@Schema(description = "结束时间")
|
private Date endTime;
|
|
@Schema(description = "开始日期")
|
private String startDate;
|
|
@Schema(description = "结束日期")
|
private String endDate;
|
}
|