1.正式检测详情代码提交

This commit is contained in:
wr
2025-01-02 19:08:26 +08:00
parent 3213bc9f84
commit cf96b8ed83
11 changed files with 304 additions and 121 deletions

View File

@@ -0,0 +1,37 @@
package com.njcn.gather.storage.pojo.param;
import lombok.Data;
/**
* @author wr
* @description
* @date 2025/1/2 16:01
*/
@Data
public class StorageParam {
/**
* 检测大相信息
*/
private Integer index;
/**
* 检测脚本id
*/
private String scriptId;
/**
* 装置id
*/
private String devId;
/**
* 装置通道
*/
private String devNum;
/**
* 自动生成,用于生成数据表后缀
*/
private Integer code;
}

View File

@@ -0,0 +1,40 @@
package com.njcn.gather.storage.pojo.vo;
import lombok.Data;
import java.math.BigDecimal;
/**
* @author wr
* @description
* @date 2025/1/2 15:53
*/
@Data
public class RawDataVO {
/**
* 时间
*/
private String time;
/**
* (间)谐波次数
*/
private Double harmNum;
/**
* A相数据
*/
private BigDecimal dataA;
/**
* B相数据
*/
private BigDecimal dataB;
/**
* C相数据
*/
private BigDecimal dataC;
}