Browse Source

******************WX *********************
修改字典获取方式

zhangweixin 4 years ago
parent
commit
c0b45f6229
18 changed files with 43 additions and 54 deletions
  1. 2 6
      datacenter/src/main/kotlin/com/persagy/server/services/objects/ComponentService.kt
  2. 1 4
      datacenter/src/main/kotlin/com/persagy/server/services/objects/EquipmentService.kt
  3. 0 1
      datacenter/src/main/kotlin/com/persagy/server/services/objects/GeneralSystemService.kt
  4. 0 2
      datacenter/src/main/kotlin/com/persagy/server/services/relation_calc/ManualRelationAddService.kt
  5. 4 4
      datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/BuildingUtil.kt
  6. 4 4
      datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/EquipUtil.kt
  7. 5 5
      datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/ProjectUtil.kt
  8. 4 4
      datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/ShaftUtil.kt
  9. 5 5
      datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/SpaceUtil.kt
  10. 2 2
      datasyn/src/main/kotlin/com/persagy/server/syn/services/journal/SynchronousMessageService.kt
  11. 8 8
      equip-component/src/main/kotlin/com/persagy/server/dao/mappers/CustomSql.kt
  12. 1 1
      equip-component/src/main/kotlin/com/persagy/server/models/mappers/CustomSqlLabsl.kt
  13. 1 1
      equip-component/src/main/kotlin/com/persagy/server/models/mappers/REquipComponMapper.kt
  14. 1 1
      equip-component/src/main/kotlin/com/persagy/server/models/mappers/StatisticalQuantity.kt
  15. 1 1
      equip-component/src/main/kotlin/com/persagy/server/service/EquipmentComService.kt
  16. 0 1
      equip-component/src/main/kotlin/com/persagy/server/service/EquipmentProSyService.kt
  17. 2 2
      scanbuilding/src/main/kotlin/com/persagy/server/mappers/StatisticsCountMapper.kt
  18. 2 2
      scanbuilding/src/main/kotlin/com/persagy/server/services/task/EquipScanTaskQueryService.kt

+ 2 - 6
datacenter/src/main/kotlin/com/persagy/server/services/objects/ComponentService.kt

@@ -74,7 +74,6 @@ object ComponentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
         }
         if(component.classCode!!.length<8){
             val entity = EquipmentService.defClassService.select(
-                SFilter.eq("projectId", component.projectId!!),
                 SFilter.endWith("code", component.classCode!!)
             ).entity()
             if (entity!=null&&entity.code!!.length>=8){
@@ -84,7 +83,6 @@ object ComponentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
             }
         } else {
             val entity = EquipmentService.defClassService.select(
-                SFilter.eq("projectId", component.projectId!!),
                 SFilter.endWith("code", component.classCode!!)
             ).entity()
             if (entity == null) {
@@ -94,7 +92,6 @@ object ComponentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
         /** 设备名字 */
         if (component.name.isNullOrEmpty()) {
             val entity = EquipmentService.defClassService.select(
-                SFilter.eq("projectId", component.projectId!!),
                 SFilter.eq("code", component.classCode!!)
             ).entity()
             if (entity!=null) {
@@ -154,7 +151,6 @@ object ComponentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
         entity.objectType = "component"
         if(entity.classCode!!.length<8){
             val defClass = EquipmentService.defClassService.select(
-                SFilter.eq("projectId", Opt.projectId!!),
                 SFilter.endWith("code", entity.classCode!!)
             ).entity()
             if (defClass!=null){
@@ -190,7 +186,7 @@ object ComponentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
                 } catch (e: Exception) {
                     e.printStackTrace()
                 }
-                ObjInfoService.createInfo(equipment,true,"Ec",equipment.classCode!!)
+//                ObjInfoService.createInfo(equipment,true,"Ec",equipment.classCode!!)
 
             }
         } catch (e: Exception) {
@@ -239,7 +235,7 @@ object ComponentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
                 } catch (e: Exception) {
                     e.printStackTrace()
                 }
-                ObjInfoService.delete(SFilter.eq("projectId",Opt.projectId!!), SFilter.eq("objId",equipment.id!!), SFilter.eq("objType","Ec"))
+//                ObjInfoService.delete(SFilter.eq("projectId",Opt.projectId!!), SFilter.eq("objId",equipment.id!!), SFilter.eq("objType","Ec"))
             }
         } catch (e: Exception) {
             e.printStackTrace()

+ 1 - 4
datacenter/src/main/kotlin/com/persagy/server/services/objects/EquipmentService.kt

@@ -89,7 +89,6 @@ object EquipmentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
             }
             if(equip.classCode!!.length<6){
                 val entity = defClassService.select(
-                        SFilter.eq("projectId", equip.projectId!!),
                         SFilter.endWith("code", equip.classCode!!)
                 ).entity()
                 if (entity!=null&&entity.code!!.length>=6){
@@ -99,7 +98,6 @@ object EquipmentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
                 }
             } else {
                 val entity = defClassService.select(
-                    SFilter.eq("projectId", equip.projectId!!),
                     SFilter.endWith("code", equip.classCode!!)
                 ).entity()
                    if (entity == null) {
@@ -159,7 +157,6 @@ object EquipmentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
 
             if(entity.classCode!!.length<6){
                 val defClass = defClassService.select(
-                        SFilter.eq("projectId", Opt.projectId!!),
                         SFilter.endWith("code", entity.classCode!!)
                 ).entity()
                 if (defClass!=null){
@@ -286,7 +283,7 @@ object EquipmentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
             }
             /** 清除对应关系 */
             if (equipment != null) {
-                val property = PropertyService.select(SFilter.eq("EquipmentId", equipment.id!!)).entity()
+                val property = PropertyService.select(SFilter.eq("equipId", equipment.id!!)).entity()
                 if (property != null && equipment.taskState != null && equipment.taskState == -1 && property.taskState != null && property.taskState == -1) {
                     val list = ArrayList<Property>()
                     list.add(property)

+ 0 - 1
datacenter/src/main/kotlin/com/persagy/server/services/objects/GeneralSystemService.kt

@@ -109,7 +109,6 @@ object GeneralSystemService : Service<GeneralSystem>(SMybatisDao(GeneralSystem::
                     if (generalSystem.name.isNullOrEmpty()) {
                         /** TODO:待修改 */
                         val dClassDef = defClassService.select(
-                            SFilter.eq("projectId", Opt.projectId!!),
                             SFilter.eq("code", generalSystem.classCode!!)
                         ).entity()
                         if (dClassDef!=null){

+ 0 - 2
datacenter/src/main/kotlin/com/persagy/server/services/relation_calc/ManualRelationAddService.kt

@@ -130,8 +130,6 @@ class ManualRelationAddService {
 
     /** 空间 */
     private val relZoneSpaceService = SObjectService(SMybatisDao(RelZoneSpace::class.java))
-    /** 类型查询 */
-    private val dClassDefService = SObjectService(SMybatisDao(DefClass::class.java))
     /** 资产所在的竖井 */
     private val rPeInShService = SObjectService(SMybatisDao(RPeInSh::class.java))
     /** 资产和竖井的资产实例 */

+ 4 - 4
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/BuildingUtil.kt

@@ -351,11 +351,11 @@ object BuildingUtil {
      */
     fun buildingDataConversions(projectId: String,groupCode: String, mapObj: HashMap<String, Any?>): Building {
         /** 查建筑类型字典 */
-        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId", projectId) ,SFilter.eq("classCode", "building")).exec()
-        if (dictDefFuncIdList.isNullOrEmpty()) {
-            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+//        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId", projectId) ,SFilter.eq("classCode", "building")).exec()
+//        if (dictDefFuncIdList.isNullOrEmpty()) {
+            var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "common"),
                 SFilter.eq("classCode","building")).exec()
-        }
+//        }
 
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()

+ 4 - 4
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/EquipUtil.kt

@@ -2363,11 +2363,11 @@ object EquipUtil {
     fun equipSyns(projectId: String,groupCode: String, mapObj: HashMap<String, Any?>): Equipment {
         val equipment = Equipment()
         /** 查建楼层型字典 */
-        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId", projectId), SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
-        if (dictDefFuncIdList.isNullOrEmpty()) {
-            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+//        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId", projectId), SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
+//        if (dictDefFuncIdList.isNullOrEmpty()) {
+           var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "common"),
                 SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
-        }
+//        }
 
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()

+ 5 - 5
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/ProjectUtil.kt

@@ -68,12 +68,12 @@ object ProjectUtil {
     fun projectDataConversions(groupCode: String, mapObj: HashMap<String, Any?>): Project{
 
         /** 查询项目类型字典 */
-        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode), SFilter.eq("projectId", mapObj["id"].toString())
-        , SFilter.eq("classCode","project") ).exec()
-        if (dictDefFuncIdList.isNullOrEmpty()) {
-            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+//        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode), SFilter.eq("projectId", mapObj["id"].toString())
+//        , SFilter.eq("classCode","project") ).exec()
+//        if (dictDefFuncIdList.isNullOrEmpty()) {
+            var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "common"),
                 SFilter.eq("classCode","project")).exec()
-        }
+//        }
 
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()

+ 4 - 4
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/ShaftUtil.kt

@@ -66,11 +66,11 @@ object ShaftUtil {
      */
     fun shaftDataConversions(projectId: String,groupCode: String, mapObj: HashMap<String, Any?>): Shaft {
         /** 查建楼层型字典 */
-        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId",projectId), SFilter.eq("classCode","shaft")).exec()
-        if (dictDefFuncIdList.isNullOrEmpty()) {
-            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+//        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId",projectId), SFilter.eq("classCode","shaft")).exec()
+//        if (dictDefFuncIdList.isNullOrEmpty()) {
+            var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "common"),
                 SFilter.eq("classCode","shaft")).exec()
-        }
+//        }
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()
         /** 遍历项目类型字典 */

+ 5 - 5
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/SpaceUtil.kt

@@ -379,12 +379,12 @@ object SpaceUtil {
     fun spaceDataConversions(projectId: String,groupCode: String, mapObj: HashMap<String, Any?>): ZoneSpace {
         logger.debug("打印空间 = ${mapObj.toJson()}")
         /** 查建楼层型字典 */
-        var dictDefFuncIdList = dictDefFuncIdService.select(
-            SFilter.eq("classCode", mapObj["classCode"].toString()),SFilter.eq("projectId", projectId)).exec()
-        if (dictDefFuncIdList.isNullOrEmpty()) {
-            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+//        var dictDefFuncIdList = dictDefFuncIdService.select(
+//            SFilter.eq("classCode", mapObj["classCode"].toString()),SFilter.eq("projectId", projectId)).exec()
+//        if (dictDefFuncIdList.isNullOrEmpty()) {
+            var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "common"),
                 SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
-        }
+//        }
         logger.debug("字典 = ${dictDefFuncIdList.size}")
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()

+ 2 - 2
datasyn/src/main/kotlin/com/persagy/server/syn/services/journal/SynchronousMessageService.kt

@@ -78,7 +78,7 @@ object SynchronousMessageService : SObjectService<SynchronousMessage>(SMybatisDa
                 for (typeCount in typeCountList){
                     listCode.add(typeCount.code!!)
                 }
-                val dClassDefList = DClassDefService.select(SFilter.eq("projectId", projectId), SFilter.inList("code", listCode)).exec()
+                val dClassDefList = DClassDefService.select( SFilter.inList("code", listCode)).exec()
                 sQueryResponse.content = dClassDefList
                 sQueryResponse.total = dClassDefList.size.toLong()
             }else {
@@ -124,7 +124,7 @@ object SynchronousMessageService : SObjectService<SynchronousMessage>(SMybatisDa
                 sBaseResponse.message = "服务正常"
             } else {
                 sBaseResponse.result = SResponseType.failure
-                sBaseResponse.message = "f服务器异常"
+                sBaseResponse.message = "服务器异常"
             }
             return sBaseResponse
         } catch (e: Exception) {

+ 8 - 8
equip-component/src/main/kotlin/com/persagy/server/dao/mappers/CustomSql.kt

@@ -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>
 
     /** 项目定制表 */

+ 1 - 1
equip-component/src/main/kotlin/com/persagy/server/models/mappers/CustomSqlLabsl.kt

@@ -53,7 +53,7 @@ interface CustomSqlLabsl {
 
 
     /** 平面图统计设备类型以及数量 */
-    @Select("SELECT e.class_code AS code , (SELECT name FROM dict.def_class WHERE project_id = #{projectId} AND code = e.class_code ) ,  count('class_code') FROM equipment e WHERE e.project_id = #{projectId} AND e.building_id = #{buildingId} AND e.floor_id = #{floorId} AND e.class_code in ('FFFSSN') GROUP BY e.class_code")
+    @Select("SELECT e.class_code AS code , (SELECT name FROM dict.def_class WHERE  code = e.class_code LIMIT 1 ) ,  count('class_code') FROM equipment e WHERE e.project_id = #{projectId} AND e.building_id = #{buildingId} AND e.floor_id = #{floorId} AND e.class_code in ('FFFSSN') GROUP BY e.class_code")
     fun equipTypeCount(@Param("projectId") projectId: String,@Param("buildingId") buildingId: String,@Param("floorId") floorId: String)
 
     /** 平面图统计设备类型以及数量 */

+ 1 - 1
equip-component/src/main/kotlin/com/persagy/server/models/mappers/REquipComponMapper.kt

@@ -40,7 +40,7 @@ import org.springframework.stereotype.Repository
 @Repository
 interface REquipComponMapper {
     /** 统计项目下允许创建的部件类型,以及项目下创建的部件数量 */
-    @Select("SELECT code,name,(select count('class_code') from public.equipment where parent_id = #{id} AND class_code = code GROUP BY class_code ) FROM dict.def_class WHERE  equipment_code = #{category} AND project_id = #{projectId}")
+    @Select("SELECT code,name,(select count('class_code') from public.equipment where parent_id = #{id} AND class_code = code GROUP BY class_code ) FROM dict.def_class WHERE  equipment_code = #{category} AND type = 'common'")
     fun getEquipCompon(projectId: String,id:String,category: String): List<EquipCompon>
 
 }

+ 1 - 1
equip-component/src/main/kotlin/com/persagy/server/models/mappers/StatisticalQuantity.kt

@@ -51,7 +51,7 @@ class StatisticalQuantity {
         val sql = object: SQL() {
             init {
                 //
-                SELECT("e.class_code AS code , (SELECT name FROM dict.def_class WHERE project_id = 'Pj1101050029' AND code = e.class_code ) ,  count('class_code')")
+                SELECT("e.class_code AS code , (SELECT name FROM dict.def_class WHERE  AND code = e.class_code LIMIT 1 ) ,  count('class_code')")
                 FROM("equipment e")
                 WHERE("e.project_id = '${projectId}' AND e.building_id = '${buildingId}' AND e.floor_id = '${floorId}' AND e.class_code in (${type})")
                 GROUP_BY(" e.class_code")

+ 1 - 1
equip-component/src/main/kotlin/com/persagy/server/service/EquipmentComService.kt

@@ -248,7 +248,7 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
 
                         }
                         if (!equip.classCode.isNullOrEmpty()){
-                            val equipFamily = defClassService.select(SFilter.eq("projectId", projectId!!),SFilter.eq("code", equip.classCode!!)).entity()
+                            val equipFamily = defClassService.select(SFilter.eq("code", equip.classCode!!)).entity()
 
                             if (equipFamily!=null){
                                 val equipCategory = EquipCategory()

+ 0 - 1
equip-component/src/main/kotlin/com/persagy/server/service/EquipmentProSyService.kt

@@ -81,7 +81,6 @@ object EquipmentProSyService : Service<EquipmentProSy>(SMybatisDao(EquipmentProS
             /** 设备名字 */
             if (equip.name.isNullOrEmpty()) {
                 val entity = defClassService.select(
-                    SFilter.eq("projectId", equip.projectId!!),
                     SFilter.eq("code", equip.classCode!!)
                 ).entity()
                 if (entity!=null) {

+ 2 - 2
scanbuilding/src/main/kotlin/com/persagy/server/mappers/StatisticsCountMapper.kt

@@ -156,13 +156,13 @@ interface StatisticsCountMapper {
     /**
      * 统计设备任务下的部件类型以及数量
      */
-    @Select("SELECT class_code as code,(SELECT name FROM dict.def_class WHERE code = class_code and project_id = #{projectId}) as name, COUNT(class_code) FROM scantask.equip_scan_task WHERE task_parent_id = #{id} AND parent_id = #{equipId} GROUP BY class_code")
+    @Select("SELECT class_code as code,(SELECT name FROM dict.def_class WHERE code = class_code and LIMIT 1 ) as name, COUNT(class_code) FROM scantask.equip_scan_task WHERE task_parent_id = #{id} AND parent_id = #{equipId} GROUP BY class_code")
     fun categoryStatistics(projectId:String,id: String,equipId: String): ArrayList<CategoryStatistics>
 
     /**
      * 统计模型设备部件类型以及数量
      */
-    @Select("SELECT mt.class_code as code,(SELECT name FROM dict.def_class WHERE code = mt.class_code and project_id = #{projectId}) as name, COUNT(class_code) FROM scantask.model_scan_task mt WHERE mt.task_parent_id = #{id} AND mt.parent_id = #{equipId} GROUP BY mt.class_code")
+    @Select("SELECT mt.class_code as code,(SELECT name FROM dict.def_class WHERE code = mt.class_code LIMIT 1 ) as name, COUNT(class_code) FROM scantask.model_scan_task mt WHERE mt.task_parent_id = #{id} AND mt.parent_id = #{equipId} GROUP BY mt.class_code")
     fun categoryStatisticsModel(projectId:String,id: String,equipId: String): ArrayList<CategoryStatistics>
 
     /**

+ 2 - 2
scanbuilding/src/main/kotlin/com/persagy/server/services/task/EquipScanTaskQueryService.kt

@@ -64,7 +64,7 @@ object EquipScanTaskQueryService : SObjectService<EquipScanTaskQuery>(SMybatisDa
                     content.component = exec
                 }
                 val defClass =
-                    defClassService.select(SFilter.eq("projectId", projectId), SFilter.eq("code", content.classCode!!)).entity()
+                    defClassService.select(SFilter.eq("code", content.classCode!!)).entity()
                 if (defClass!=null) {
                     content.equipCategory = defClass
                 }
@@ -85,7 +85,7 @@ object EquipScanTaskQueryService : SObjectService<EquipScanTaskQuery>(SMybatisDa
                     content.component = exec
                 }
                 val defClass =
-                    defClassService.select(SFilter.eq("projectId", projectId), SFilter.eq("code", content.classCode!!)).entity()
+                    defClassService.select( SFilter.eq("code", content.classCode!!)).entity()
                 if (defClass!=null) {
                     content.equipCategory = defClass
                 }