package com.iailab.sdk.auth.client.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年11月24日
|
*/
|
public class ApiPointsValueQueryDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
private List<String> pointNos;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date start;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date end;
|
|
public List<String> getPointNos() {
|
return pointNos;
|
}
|
|
public void setPointNos(List<String> pointNos) {
|
this.pointNos = pointNos;
|
}
|
|
public Date getStart() {
|
return start;
|
}
|
|
public void setStart(Date start) {
|
this.start = start;
|
}
|
|
public Date getEnd() {
|
return end;
|
}
|
|
public void setEnd(Date end) {
|
this.end = end;
|
}
|
}
|