浏览代码

********************WX******************
控制系统数量

zhangweixin 4 年之前
父节点
当前提交
bad38b2fb4

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/dictnew/DefFuncId.kt

@@ -223,7 +223,7 @@ open class DefFuncId: Serializable {
     @Schema(description = "路径")
     var path: String? = null
         get() {
-            return if ( code == "roomLocalFuncTypeID"||code == "roomLocalFuncTypeName"){
+            return if ( code == "roomLocalFuncTypeID"||code == "roomLocalFuncTypeName"||code == "rFID"){
                 "infos.$code"
             } else if (firstName == "基本信息"|| firstName.isNullOrEmpty()||firstName == "基本参数"){
                 code

+ 0 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/dictnew/DefFuncIdGather.kt

@@ -45,7 +45,6 @@ open class DefFuncIdGather: Serializable {
 
     /** 全局id */
     @Schema(description = "全局id")
-    @Id
     @Column(name = "id")
     var id: String? = null
 

+ 2 - 0
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/REqForBd.kt

@@ -55,6 +55,7 @@ class REqForBd : RBaseInfo(){
 
     /** 项目Id */
     @Schema(description = "项目Id")
+    @Id
     @Column(name = "project_id")
     var projectId: String? = null
 
@@ -65,6 +66,7 @@ class REqForBd : RBaseInfo(){
 
     /** 边类型 */
     @Schema(description = "边类型")
+    @Id
     @Column(name = "type")
     var type: String? = null
 

+ 35 - 0
datacenter/src/main/kotlin/com/persagy/server/controllers/objects/UpDataFloorAndBuildingController.kt

@@ -0,0 +1,35 @@
+package com.persagy.server.controllers.objects
+
+import com.persagy.server.datacenter.models.requests.UpDataFloorAndBuildingRequests
+import com.persagy.server.services.assistant.UpDataFloorAndBuildingServuce
+import com.persagy.service.models.responses.SBaseResponse
+import io.swagger.v3.oas.annotations.Operation
+import io.swagger.v3.oas.annotations.tags.Tag
+import org.springframework.web.bind.annotation.PostMapping
+import org.springframework.web.bind.annotation.RequestBody
+import org.springframework.web.bind.annotation.RequestMapping
+import org.springframework.web.bind.annotation.RestController
+
+/**
+ * 关系-修改对象的建筑楼层信息
+ *
+ * @author
+ */
+
+@Tag(name = "关系-修改对象的建筑楼层信息")
+@RestController
+@RequestMapping("/update-relationship")
+class UpDataFloorAndBuildingController {
+
+    /**
+     * 修改空间和楼层建筑的关系
+     *
+     * @param   upDataFloorAndBuildingRequestsList     修改对象列表
+     */
+    @Operation(summary = "修改业务空间对象和建筑楼层的关系", description = "spaceId 业务空间id,id 楼层或建筑id,type  业务空间的类型")
+    @PostMapping(value = ["/update-sp"])
+    fun  spFloorAndBuilding(@RequestBody upDataFloorAndBuildingRequestsList:ArrayList<UpDataFloorAndBuildingRequests>): SBaseResponse {
+        return UpDataFloorAndBuildingServuce.upDataFloorORBuilding(upDataFloorAndBuildingRequestsList)
+    } // Function spFloorAndBuilding
+
+} // Class UpDataFloorAndBuildingController

+ 9 - 9
datacenter/src/main/kotlin/com/persagy/server/services/assistant/UpDataFloorAndBuildingServuce.kt

@@ -77,7 +77,7 @@ object UpDataFloorAndBuildingServuce : Service<Equipment>(SMybatisDao(Equipment:
                     if (!id.isNullOrEmpty()) {
                         if (id.startsWith("Fl")) {
                             val floor =
-                                FloorService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("FloorID", id))
+                                FloorService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("id", id))
                                     .entity()
 
                             if (floor != null) {
@@ -140,17 +140,17 @@ object UpDataFloorAndBuildingServuce : Service<Equipment>(SMybatisDao(Equipment:
                 if (!id.isNullOrEmpty()) {
                     if (id.startsWith("Fl")) {
                         zonePowerSupply.floorId = id
-                        val floor = FloorService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("FloorID", id))
+                        val floor = FloorService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("id", id))
                             .entity()
                         zonePowerSupply.buildingId = floor?.buildingId
                         val list = ArrayList<String>()
-                        list.add("FloorId")
-                        list.add("BuildingId")
+                        list.add("floorId")
+                        list.add("buildingId")
                         ZoneSpaceBaseService.update(zonePowerSupply, list)
                     } else if (id.startsWith("Bd")) {
                         val list = ArrayList<String>()
-                        list.add("FloorId")
-                        list.add("BuildingId")
+                        list.add("floorId")
+                        list.add("buildingId")
                         zonePowerSupply.buildingId = id
                         zonePowerSupply.floorId = null
                         ZoneSpaceBaseService.update(zonePowerSupply, list)
@@ -158,14 +158,14 @@ object UpDataFloorAndBuildingServuce : Service<Equipment>(SMybatisDao(Equipment:
                 } else {
                     /** 清空建筑楼层 */
                     val list = ArrayList<String>()
-                    list.add("FloorId")
-                    list.add("BuildingId")
+                    list.add("floorId")
+                    list.add("buildingId")
                     zonePowerSupply.buildingId = null
                     zonePowerSupply.floorId = null
                     ZoneSpaceBaseService.update(zonePowerSupply, list)
                 }
                 /** 发送消息 */
-                sendMessages(projectId!!, spaceId!!, id)
+//                sendMessages(projectId!!, spaceId!!, id)
             }
             return SBaseResponse(SResponseType.success)
         } catch (e: Exception) {

+ 7 - 1
datacenter/src/main/kotlin/com/persagy/server/services/graphtype/GraphicTypeMapperService.kt

@@ -61,6 +61,9 @@ open class GraphicTypeMapperService {
     @Autowired
     lateinit var mapper: IRelationCountMapper
 
+    /** 设备和系统关系 */
+    private val rEq2SyService = SObjectService(SMybatisDao(REq2Sy::class.java))
+
     /**
      * 查询数量
      */
@@ -201,11 +204,14 @@ open class GraphicTypeMapperService {
                                 execEquip.tableName = "v_equipment"
                                 val exec = execEquip.exec()
                                 count += exec.size
+                            }else if(n == "relationship.r_eq2sy"){
+                                val rEq2SyList = rEq2SyService.select(SFilter.eq("projectId", projectId),
+                                    SFilter.eq("type", relationTypeProject.relationType!!)).exec()
+                                count += rEq2SyList.size
                             }else if (!n.isNullOrEmpty()){
                                 if (!relationTypeProject.relationType.isNullOrEmpty()) {
                                     count += mapper.relationCountRelType(n, projectId,relationTypeProject.relationType!!)
                                 }
-
                             }
                         }
 //                        for(n in names){

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

@@ -535,7 +535,7 @@ class ManualRelationAddService {
                 rEq2Bd.buildingId = relZoneSpace.id
                 rEq2Bd.projectId = projectId
                 rEq2Bd.equipId = relEquipment.id
-//                rEq2Bd.type = "eq2bd_for"
+                rEq2Bd.type = "eq2bd_for"
                 rEq2Bd.sign = 1
                 REqForBdService.replace(rEq2Bd)
             }