移动代码

This commit is contained in:
huangzj
2023-05-25 11:06:33 +08:00
parent 2fcbd9bc37
commit e169fe55a6
178 changed files with 9625 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
package com.njcn.csdevice.constant;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
/**
* 常量类
* @author qijian
* @version 1.0.0
* @date 2022年11月11日 09:56
*/
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());
}