26 lines
423 B
Java
26 lines
423 B
Java
package com.njcn.event.file.pojo.bo;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author hongawen
|
|
* @version 1.0.0
|
|
* @date 2023年09月20日 16:11
|
|
*/
|
|
@Data
|
|
public class InstantData {
|
|
|
|
private Float max;
|
|
|
|
private Float min;
|
|
|
|
List<List<Float>> aValue =new ArrayList<>();
|
|
|
|
List<List<Float>> bValue =new ArrayList<>();
|
|
|
|
List<List<Float>> cValue =new ArrayList<>();
|
|
}
|