1.正式检测详情代码提交
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user