This commit is contained in:
2024-12-27 15:39:20 +08:00
parent 2b9cce41aa
commit 2277e015ae
3 changed files with 6 additions and 0 deletions

View File

@@ -36,6 +36,8 @@ public class AdHarmonicResult {
*/
private String scriptDtlsId;
private Integer index;
/**
* 检测指标,字典表
*/

View File

@@ -36,6 +36,8 @@ public class AdNonHarmonicResult {
*/
private String scriptDtlsId;
private Integer index;
/**
* 检测指标,字典表
*/

View File

@@ -39,6 +39,7 @@ public class TableGenServiceImpl implements TableGenService {
" Monitor_Id CHAR(32) NOT NULL COMMENT '监测点Id',\n" +
" Time_Id DATETIME NOT NULL COMMENT '时间',\n" +
" Script_Dtls_Id CHAR(32) NOT NULL COMMENT '检测脚本子表Id字典表',\n" +
" index int(5) NOT NULL COMMENT '总检测脚本中的测试项序号',\n" +
" AD_Type CHAR(32) NOT NULL COMMENT '检测指标,字典表',\n" +
" Data_Type CHAR(32) NOT NULL COMMENT '数据指标只有数据源为分钟统计时候才会使用最大、最小、平均、CP95默认平均值字典表',\n" +
A+B+C+
@@ -50,6 +51,7 @@ public class TableGenServiceImpl implements TableGenService {
" Monitor_Id CHAR(32) NOT NULL COMMENT '监测点Id',\n" +
" Time_Id DATETIME NOT NULL COMMENT '时间',\n" +
" Script_Dtls_Id CHAR(32) NOT NULL COMMENT '检测脚本子表Id字典表',\n" +
" index int(5) NOT NULL COMMENT '总检测脚本中的测试项序号',\n" +
" AD_Type CHAR(32) NOT NULL COMMENT '检测指标,字典表',\n" +
" Data_Type CHAR(32) NOT NULL COMMENT '数据指标只有数据源为分钟统计时候才会使用最大、最小、平均、CP95默认平均值字典表',\n" +
" Result_Flag int(1) NOT NULL COMMENT '0.不合格 1.合格',\n" +