录波功能完善

This commit is contained in:
caozehui
2025-09-10 08:26:35 +08:00
parent 2121a293cb
commit 694f12bc29
24 changed files with 245 additions and 130 deletions

View File

@@ -17,6 +17,7 @@
<result column="Dev_Curr" property="devCurr"/>
<result column="Angle" property="angle"/>
<result column="Use_Phase_Index" property="usePhaseIndex"/>
<result column="Wave_Cmd" property="waveCmd"/>
<collection
property="monitorList"
@@ -39,7 +40,8 @@
t.Dev_Volt,
t.Dev_Curr,
p.Angle,
p.Use_Phase_Index
p.Use_Phase_Index,
t.Wave_Cmd
FROM
pq_dev d
inner join pq_dev_type t on d.Dev_Type = t.id

View File

@@ -17,6 +17,7 @@
<result column="Dev_Curr" property="devCurr"/>
<result column="Angle" property="angle"/>
<result column="Use_Phase_Index" property="usePhaseIndex"/>
<result column="Wave_Cmd" property="waveCmd"/>
</resultMap>
<select id="listStandardDevPreDetection" resultMap="standardDevResultMap">
@@ -33,7 +34,8 @@
dev_type.Dev_Volt,
dev_type.Dev_Curr,
icd_path.Angle,
icd_path.Use_Phase_Index
icd_path.Use_Phase_Index,
dev_type.Wave_Cmd
from pq_standard_dev standard_dev
inner join pq_dev_type dev_type on standard_dev.Dev_Type = dev_type.id
inner join pq_icd_path icd_path on dev_type.icd = icd_path.id

View File

@@ -50,21 +50,6 @@ public class PqDevSub {
*/
private Integer factorCheckResult;
/**
* 实时数据结果 0:不合格1:合格2未检
*/
private Integer realtimeResult;
/**
* 统计数据结果 0:不合格1:合格2未检
*/
private Integer statisticsResult;
/**
* 录波数据结果 0:不合格1:合格2未检
*/
private Integer recordedResult;
/**
* 检测人
*/

View File

@@ -84,6 +84,9 @@ public class PreDetection {
private Double devVolt;
private Double devCurr;
@JSONField(serialize = false)
private String waveCmd;
/**
* 监测点信息
*/