This commit is contained in:
huangzj
2023-06-16 10:12:05 +08:00
parent 80ce037a22
commit 6eb5bf4029
7 changed files with 21 additions and 5 deletions

View File

@@ -14,5 +14,6 @@ import java.util.stream.Stream;
public interface DataParam {
List<String> phases = Stream.of("A","B","C","T").collect(Collectors.toList());
List<String> statMethods = Stream.of("avg","max","min","cp95").collect(Collectors.toList());
long FILE_SIZE = 10 * 1024 * 1024;
}

View File

@@ -21,7 +21,8 @@ public enum AlgorithmResponseEnum {
DATA_ERROR("A00503","存在相同的数据"),
LINE_DATA_ERROR ("A00504","设备下监测点数据缺失"),
ENGINEERING_DATA_ERROR ("A00505","工程数据数据缺失"),
ELEEPDPQD_DATA_ERROR ("A00505","统计指标据数据缺失"),
ELEEPDPQD_DATA_ERROR ("A00506","统计指标据数据缺失"),
FILE_SIZE_ERROR ("A00507","文件不能超过10M"),
;