增加数据分析实体类

This commit is contained in:
duwenyuan 2025-10-15 14:55:36 +08:00
parent a445abf020
commit b9d5757b1a
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,27 @@
package org.jeecg.entity;
import lombok.Data;
import java.util.Date;
@Data
public class SampleGeadingData {
/**
* 样品ID
*/
private Integer sampleId;
/**
* 采集停止时间
*/
private Date collectStop;
/**
* 级别
*/
private Integer grading;
/**
* 阈值
*/
private Double threshold ;
}

View File

@ -0,0 +1,25 @@
package org.jeecg.entity;
import lombok.Data;
import java.util.List;
@Data
public class StationInfoQueryResult {
private String stationCode;
private Integer stationId;
private String countryCode;
private String type;
private String lon;
private String lat;
private String description;
private String status;
List<SampleLevelData> SampleLevelDataList;
}