|
@@ -73,7 +73,7 @@ interface CustomSql {
|
|
|
fun dynamicInfoPointCodes(projectId: String): ArrayList<HashMap<String,String>>
|
|
|
|
|
|
/** 静态信息点总数 */
|
|
|
- @Select("select count(*) from dict.def_funcid where project_id = #{projectId} AND length('class_code') = 6 and category ='STATIC'")
|
|
|
+ @Select("select count(*) from dict.def_funcid where type = 'common' AND length('class_code') = 6 and category ='STATIC'")
|
|
|
fun staticInfoPointCounts(): Int
|
|
|
|
|
|
/** 项目下所有静态信息点编码 */
|
|
@@ -98,16 +98,16 @@ interface CustomSql {
|
|
|
//设备 统计信息点与需采集数据占比
|
|
|
|
|
|
/** 设备 数字字典信息点总数 */
|
|
|
- @Select("select count(*) from dict.def_funcid where project_id = #{projectId} AND length(class_code) = 6")
|
|
|
+ @Select("select count(*) from dict.def_funcid where type = 'common' AND length(class_code) = 6")
|
|
|
fun controlInfoCounts(projectId: String):Int
|
|
|
|
|
|
/** 项目下所有已采集的动态信息点编码 */
|
|
|
- @Select("select code AS info_point_code, class_code AS type from dict.def_funcid_project where class_code in(select class_code from public.equipment where project_id= #{projectId} GROUP BY class_code) and category !='STATIC' and visible=TRUE")
|
|
|
+ @Select("select code AS info_point_code, class_code AS type from dict.def_funcid where class_code in(select class_code from public.equipment where project_id= #{projectId} GROUP BY class_code) and category !='STATIC' and visible=TRUE")
|
|
|
fun gatherDynamicInfoCode(projectId: String): ArrayList<HashMap<String,String>>
|
|
|
|
|
|
|
|
|
/** 项目下所有已采集静态信息点编码 */
|
|
|
- @Select("select code AS info_point_code, class_code AS type from dict.def_funcid_project where class_code in(select class_code from public.equipment where project_id= #{projectId} GROUP BY class_code) and category ='STATIC' and visible=TRUE")
|
|
|
+ @Select("select code AS info_point_code, class_code AS type from dict.def_funcid where class_code in(select class_code from public.equipment where project_id= #{projectId} GROUP BY class_code) and category ='STATIC' and visible=TRUE")
|
|
|
fun gatherStaticInfoCode(projectId: String): ArrayList<HashMap<String,String>>
|
|
|
|
|
|
/** 项目下所有已采集自定义信息点编码*/
|
|
@@ -118,7 +118,7 @@ interface CustomSql {
|
|
|
//系统 统计信息点与需采集数据占比
|
|
|
|
|
|
/** 系统 数字字典信息点总数 */
|
|
|
- @Select("select count(*) from dict.def_funcid where project_id = #{projectId} AND length(class_code)= 4 ")
|
|
|
+ @Select("select count(*) from dict.def_funcid where type = 'common' AND length(class_code)= 4 ")
|
|
|
fun systemControlInfoCounts(projectId: String):Int
|
|
|
|
|
|
/** 系统 项目下自定义信息点总数 */
|
|
@@ -127,11 +127,11 @@ interface CustomSql {
|
|
|
fun systemCustomInfoCounts(projectId: String): Int
|
|
|
|
|
|
/** 系统 已采集动态信息点编码 */
|
|
|
- @Select("select code AS info_point_code,class_code AS type from dict.def_funcid where project_id = #{projectId} AND (length(class_code)=4) and category !='STATIC' and visible=TRUE")
|
|
|
+ @Select("select code AS info_point_code,class_code AS type from dict.def_funcid where type = 'common' AND (length(class_code)=4) and category !='STATIC' and visible=TRUE")
|
|
|
fun systemDynamicInfoCode():ArrayList<HashMap<String,String>>
|
|
|
|
|
|
/** 系统 已采集静态信息点编码 */
|
|
|
- @Select("select code AS info_point_code,class_code AS type from dict.def_funcid where project_id = #{projectId} AND (length(class_code)=4) and category ='STATIC' and visible=TRUE")
|
|
|
+ @Select("select code AS info_point_code,class_code AS type from dict.def_funcid where type = 'common' AND (length(class_code)=4) and category ='STATIC' and visible=TRUE")
|
|
|
fun systemStaticInfoCode():ArrayList<HashMap<String,String>>
|
|
|
|
|
|
/** 系统 已采集自定义信息点编码 */
|
|
@@ -166,7 +166,7 @@ interface CustomSql {
|
|
|
/**
|
|
|
*项目下所有设备类型以及名称
|
|
|
*/
|
|
|
- @Select("SELECT class_code as code ,(SELECT name FROM dict.def_class WHERE project_id = #{projectId} AND code = class_code ) FROM v_equipment WHERE project_id = #{projectId} GROUP BY class_code")
|
|
|
+ @Select("SELECT class_code as code ,(SELECT name FROM dict.def_class WHERE code = class_code LIMIT 1 ) FROM v_equipment WHERE project_id = #{projectId} GROUP BY class_code")
|
|
|
fun equipTypeName(projectId: String):ArrayList<DefClass>
|
|
|
|
|
|
/** 项目定制表 */
|