Prechádzať zdrojové kódy

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

zhangweixin 4 rokov pred
rodič
commit
8de38165ca

+ 63 - 0
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/task/BuildingDicTwo.kt

@@ -0,0 +1,63 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .F88X
+ *        X8888Y
+ *      .}888888N;
+ *        i888888N;        .:!              .I$WI:
+ *          R888888I      .'N88~            i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
+ *          .R888888I    .;N8888~          .X8'  "8I.!,/8"  !%NY8`"8I8~~8>,88I
+ *            +888888N;  .8888888Y                                  "&&8Y.}8,
+ *            ./888888N;  .R888888Y        .'}~    .>}'.`+>  i}!    "i'  +/'  .'i~  !11,.:">,  .~]!  .i}i
+ *              ~888888%:  .I888888l      .]88~`1/iY88Ii+1'.R$8$8]"888888888>  Y8$  W8E  X8E  W8888'188Il}Y88$*
+ *              18888888    E8888881    .]W%8$`R8X'&8%++N8i,8N%N8+l8%`  .}8N:.R$RE%N88N%N$K$R  188,FE$8%~Y88I
+ *            .E888888I  .i8888888'      .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
+ *            8888888I  .,N888888~        ~88i"8W,!N8*.I88.}888%F,i$88"F88"  888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
+ *          i888888N'      I888Y          ]88;/EX*IFKFK88X  K8R  .l8W  88Y  ~88}'88E&%8W.X8N``]88!.$8K  .:W8I
+ *        .i888888N;        I8Y          .&8$  .X88!  i881.:%888>I88  ;88]  +88+.';;;;:.Y88X  18N.,88l  .+88/
+ *      .:R888888I
+ *      .&888888I                                          Copyright (c) 2009-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * *********************************************************************************************************************
+ */
+
+package com.persagy.server.datacenter.models.entities.task
+
+import io.swagger.v3.oas.annotations.media.Schema
+import javax.persistence.Column
+
+/**
+ * 建筑
+ *
+ * @author  邓婷婷
+ */
+@Schema(description = "建筑")
+class BuildingDicTwo {
+
+    /** id */
+    @Schema(description = "id")
+    @Column(name = "id")
+    var id: String? = null
+
+    /** name */
+    @Schema(description = "name")
+    @Column(name = "name")
+    var name: String? = null
+
+    /** localName */
+    @Schema(description = "localName")
+    @Column(name = "local_name")
+    var localName: String? = null
+
+    /** floorList */
+    @Schema(description = "floor")
+    var floorList: ArrayList<FloorDicTwo>? = null
+
+    /** floorListStr */
+    @Schema(description = "floorListStr")
+    @Column(name = "floor_list_str")
+    var floorListStr: String? = null
+}

+ 54 - 0
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/task/FloorDicTwo.kt

@@ -0,0 +1,54 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .F88X
+ *        X8888Y
+ *      .}888888N;
+ *        i888888N;        .:!              .I$WI:
+ *          R888888I      .'N88~            i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
+ *          .R888888I    .;N8888~          .X8'  "8I.!,/8"  !%NY8`"8I8~~8>,88I
+ *            +888888N;  .8888888Y                                  "&&8Y.}8,
+ *            ./888888N;  .R888888Y        .'}~    .>}'.`+>  i}!    "i'  +/'  .'i~  !11,.:">,  .~]!  .i}i
+ *              ~888888%:  .I888888l      .]88~`1/iY88Ii+1'.R$8$8]"888888888>  Y8$  W8E  X8E  W8888'188Il}Y88$*
+ *              18888888    E8888881    .]W%8$`R8X'&8%++N8i,8N%N8+l8%`  .}8N:.R$RE%N88N%N$K$R  188,FE$8%~Y88I
+ *            .E888888I  .i8888888'      .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
+ *            8888888I  .,N888888~        ~88i"8W,!N8*.I88.}888%F,i$88"F88"  888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
+ *          i888888N'      I888Y          ]88;/EX*IFKFK88X  K8R  .l8W  88Y  ~88}'88E&%8W.X8N``]88!.$8K  .:W8I
+ *        .i888888N;        I8Y          .&8$  .X88!  i881.:%888>I88  ;88]  +88+.';;;;:.Y88X  18N.,88l  .+88/
+ *      .:R888888I
+ *      .&888888I                                          Copyright (c) 2009-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * *********************************************************************************************************************
+ */
+
+package com.persagy.server.datacenter.models.entities.task
+
+import io.swagger.v3.oas.annotations.media.Schema
+import javax.persistence.Column
+
+/**
+ * 楼层
+ *
+ * @author  邓婷婷
+ */
+@Schema(description = "楼层")
+class FloorDicTwo {
+
+    /** floorId */
+    @Schema(description = "floorId")
+    @Column(name = "floor_id")
+    var id: String? = null
+
+    /** 名称 */
+    @Schema(description = "floorName")
+    @Column(name = "floor_name")
+    var name: String? = null
+
+    /** 本地名称 */
+    @Schema(description = "floorLocalName")
+    @Column(name = "floor_local_name")
+    var localName: String? = null
+}

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

@@ -84,9 +84,9 @@ object Opts {
     /** 生产厂家名称 */
     val MANUFACTURER = "manufacturer"
     /** 设备型号 */
-    val SPECIFICATION = "Specification"
+    val SPECIFICATION = "specification"
     /** 供应商单位名称 */
-    val SUPPLIER = "Supplier"
+    val SUPPLIER = "supplier"
     /** 设备照片 */
     val PIC = "pic"
     /** 竖井类型 */

+ 2 - 2
scanbuilding/src/main/kotlin/com/persagy/server/controller/UserController.kt

@@ -110,7 +110,7 @@ open class UserController {
     @PostMapping(value = ["/create"])
     fun create(@RequestBody request: SCreateRequest<User>): SCreateResponse<User> {
         logger.debug("user =${request.toJson()}")
-        return UserService.createList(request)
+        return UserService.create(request)
     } // Function create()
 
 
@@ -135,7 +135,7 @@ open class UserController {
    @Operation(summary = "更新用户信息", description = "")
     @PostMapping(value = ["/update"])
     fun update(@RequestBody request: SUpdateRequest<User>): SBaseResponse {
-        return UserService.updateList(request)
+        return UserService.update(request)
     } // Function update()
 
     /**

+ 1 - 1
scanbuilding/src/main/kotlin/com/persagy/server/controller/task/ScanTaskBaseController.kt

@@ -67,7 +67,7 @@ open class ScanTaskBaseController {
     fun count(@RequestBody request: SCountRequest): SCountResponse {
         val withFilterList = ArrayList<SFilter>()
         withFilterList.add(SFilter.eq("projectId", SPageContext.getHeader("projectId").toString()))
-        withFilterList.add(SFilter.lt(SLength("classCode"), 6))
+        withFilterList.add(SFilter.eq(SLength("classCode"), 6))
         return ScanTaskBaseService.count(request,withFilterList)
     } // Function count()
 

+ 0 - 1
scanbuilding/src/main/kotlin/com/persagy/server/entities/User.kt

@@ -54,7 +54,6 @@ class User : SBaseEntity() {
     /** 手机号 */
     @Schema(description = "手机号")
     @Pattern(regexp="1[2-8][0-9]{9}", message="手机号格式不正确!")
-    @Id
     @Column(name = "phone")
     var phone: String? = null
 

+ 2 - 0
scanbuilding/src/main/kotlin/com/persagy/server/entities/response/UserLoginResponse.kt

@@ -27,6 +27,7 @@
 package com.persagy.server.entities.response
 
 import com.persagy.server.entities.Project
+import com.persagy.server.entities.User
 import io.swagger.v3.oas.annotations.media.Schema
 
 /**
@@ -38,6 +39,7 @@ import io.swagger.v3.oas.annotations.media.Schema
 class UserLoginResponse(
         /** 项目列表 */
         @Schema(description = "项目列表") var projectList: List<Project>?,
+        @Schema(description = "用户") var user: User?,
         code: BaseResponse.ResultCode = ResultCode.success,
         resultMsg: String = "登录成功!"
 

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 3 - 5
scanbuilding/src/main/kotlin/com/persagy/server/mappers/StatisticsCountMapper.kt


+ 98 - 7
scanbuilding/src/main/kotlin/com/persagy/server/services/UserService.kt

@@ -39,7 +39,13 @@ import com.persagy.server.http.HttpUntil
 import com.persagy.server.util.QrCodeUntils
 import com.persagy.service.SObjectService
 import com.persagy.service.SPageContext
+import com.persagy.service.models.enums.SResponseType
+import com.persagy.service.models.requests.SCreateRequest
+import com.persagy.service.models.requests.SUpdateRequest
+import com.persagy.service.models.responses.SBaseResponse
+import com.persagy.service.models.responses.SCreateResponse
 import org.slf4j.LoggerFactory
+import org.springframework.web.bind.annotation.RequestBody
 import java.net.URL
 
 /**
@@ -60,12 +66,58 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
     override fun onCreateBefore(entity: User): Boolean {
         val projectId = SPageContext.getHeader("projectId")
         entity.projectId = projectId
-        if (entity.userId.isNullOrEmpty()){
-            entity.userId = QrCodeUntils.uuidCreate()
-        }
+        entity.userId = QrCodeUntils.uuidCreate()
         return super.onCreateBefore(entity)
     }
 
+    /**
+     * 创建
+     */
+    fun create(request: SCreateRequest<User>): SCreateResponse<User> {
+        val projectId = SPageContext.getHeader("projectId")
+        val coming = SPageContext.getHeader("coming")
+        val sCreateResponse = SCreateResponse<User>(SResponseType.success)
+        if (!request.content.isNullOrEmpty()) {
+            for (content in request.content) {
+                val entity = select(SFilter.eq("projectId", projectId!!), SFilter.eq("phone", content.phone!!)).entity()
+                if (entity!=null) {
+                    sCreateResponse.result = SResponseType.failure
+                    sCreateResponse.message = "手机号已存在!"
+                    return sCreateResponse
+                }else {
+                    content.projectId = projectId
+                    content.userId = QrCodeUntils.uuidCreate()
+                    val insert = insert(content)
+                    if(insert){
+                        try {
+                            val userLog = UserLog()
+                            userLog.comming = coming!!
+                            userLog.action = "创建用户"
+                            userLog.id = QrCodeUntils.uuidCreate()
+                            userLog.note = QrCodeUntils.toLog(content,coming)
+                            userLog.phone = content.phone
+                            userLog.projectId = projectId
+                            userLog.userId = content.userId
+                            userLog.userName = content.userName
+                            userLogService.insert(userLog)
+                        } catch (e: Exception) {
+                            e.printStackTrace()
+                        }
+                    }
+                }
+            }
+            sCreateResponse.entityList = request.content
+        } else {
+            sCreateResponse.result = SResponseType.failure
+            sCreateResponse.message = "用户信息不可以为空"
+        }
+        return sCreateResponse
+    }
+
+
+
+
+
     override fun onCreateSuccess(entityList: ArrayList<User>) {
         super.onCreateSuccess(entityList)
         try {
@@ -109,6 +161,45 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
         return super.onDeleteBefore(entity)
     }
 
+    /**
+     * 修改
+     */
+    fun update(@RequestBody request: SUpdateRequest<User>): SBaseResponse {
+        val sBaseResponse = SBaseResponse(SResponseType.success)
+        val projectId = SPageContext.getHeader("projectId")
+        val coming = SPageContext.getHeader("coming")
+        if (!request.content.isNullOrEmpty()) {
+            for (content in request.content!!) {
+                val entity = select(SFilter.eq("projectId", projectId!!), SFilter.eq("phone", content.phone!!)).entity()
+                if (entity!=null) {
+                    sBaseResponse.message = "手机号已存在!"
+                    sBaseResponse.result =SResponseType.failure
+                    return sBaseResponse
+                }else {
+                    val update = update(content)
+                    if (update) {
+                        try {
+                            val userLog = UserLog()
+                            userLog.comming = coming
+                            userLog.action = "更新用户信息"
+                            userLog.id = QrCodeUntils.uuidCreate()
+                            userLog.note = QrCodeUntils.toLog(content,coming)
+                            userLog.phone = content.phone
+                            userLog.projectId = projectId
+                            userLog.userId = content.userId
+                            userLog.userName = content.userName
+                            userLogService.insert(userLog)
+                        } catch (e: Exception) {
+                            e.printStackTrace()
+                        }
+                    }
+                }
+            }
+        }
+        return sBaseResponse
+    }
+
+
     override fun onUpdateBefore(entity: User): Boolean {
         try {
             val projectId = SPageContext.getHeader("projectId")
@@ -143,7 +234,7 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
                 val result = HttpUntil.postJson(URL(Opts.smsVerifyCode), json, BaseResponse::class.java)
                 logger.debug("result=${result.result}")
                 if (result.result != BaseResponse.ResultCode.success) {
-                    return UserLoginResponse(null, BaseResponse.ResultCode.failure, "手机号或验证码不正确!")
+                    return UserLoginResponse(null,null, BaseResponse.ResultCode.failure, "手机号或验证码不正确!")
                 }
             }
             logger.debug("phone====$phone")
@@ -179,7 +270,7 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
                     val select = buildService.select(SFilter.eq("projectId", project.id!!)).exec()
                     project.buildList = select
                 }
-                return UserLoginResponse(projectList)
+                return UserLoginResponse(projectList,userList[0])
             }
 
 //            val projectList = projectDao.queryByPhone(phone)
@@ -187,11 +278,11 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
 //                project.buildList = buildingService.query(project.projId!!)
 //            }
             val projectList = ArrayList<Project>()
-            return UserLoginResponse(projectList)
+            return UserLoginResponse(projectList,userList[0])
         } catch (e: Exception) {
             e.printStackTrace()
         }
-        return UserLoginResponse(null, BaseResponse.ResultCode.failure, "登录失败!")
+        return UserLoginResponse(null,null, BaseResponse.ResultCode.failure, "登录失败!")
     } // Function login()
 
     /**

+ 26 - 12
scanbuilding/src/main/kotlin/com/persagy/server/services/task/EquipScanTaskService.kt

@@ -201,17 +201,31 @@ object EquipScanTaskService : RService<EquipScanTask>(SMybatisDao(EquipScanTask:
                     if (equipScanTask.cadId.isNullOrEmpty()) {
                         equipScanTask.cadId = equipment!!.cadId
                     }
-//                    if (equipScanTask.supplier.isNullOrEmpty()) {
-//                        equipScanTask.supplier = equipment!!.dpSupplierID
-//                    }
-//                    if (equipScanTask.specification.isNullOrEmpty()) {
-//                        equipScanTask.specification = equipment!!.dpManufacturerID
-//                    }
-//                    if (equipScanTask.manufacturer.isNullOrEmpty()) {
-//                        equipScanTask.manufacturer = equipment!!.dpMaintainerID
-//                    }
-                    if (equipScanTask.bimLocation.isNullOrEmpty()){
-                        equipScanTask.bimLocation = equipment.bimLocation
+                    if (equipScanTask.manufacturer.isNullOrEmpty()) {
+                        if (!equipment.infos.isNullOrEmpty()) {
+                            val contains = equipment.infos!!.contains("manufacturer")
+                            if (contains) {
+                                equipScanTask.manufacturer = equipment.infos!!["manufacturer"].toString()
+                            }
+                        }
+                    }
+
+                    if (equipScanTask.specification.isNullOrEmpty()) {
+                        if (!equipment.infos.isNullOrEmpty()) {
+                            val contains = equipment.infos!!.contains("specification")
+                            if (contains) {
+                                equipScanTask.specification = equipment.infos!!["specification"].toString()
+                            }
+                        }
+                    }
+
+                    if (equipScanTask.supplier.isNullOrEmpty()) {
+                        if (!equipment.infos.isNullOrEmpty()) {
+                            val contains = equipment.infos!!.contains("supplier")
+                            if (contains) {
+                                equipScanTask.supplier = equipment.infos!!["supplier"].toString()
+                            }
+                        }
                     }
 
 //                    if (equipScanTask.taskType.isNullOrEmpty()){
@@ -417,7 +431,7 @@ object EquipScanTaskService : RService<EquipScanTask>(SMybatisDao(EquipScanTask:
             if (entity1!=null){
                 if (entity1.taskState == 1){
                     entity1.taskState = null
-                    EquipmentService.update(entity1, arrayListOf("TaskState"))
+                    EquipmentService.update(entity1, arrayListOf("taskState"))
                 }
             }
         } catch (e: Exception) {

+ 4 - 1
scanbuilding/src/main/kotlin/com/persagy/server/services/task/ModelScanTaskService.kt

@@ -463,11 +463,13 @@ object ModelScanTaskService : RService<ModelScanTask>(SMybatisDao(ModelScanTask:
                     if (request.category.isNullOrEmpty()){
                         val equipInISpaceList = mapper.equipInISpace(projectId!!, request.modelId!!, bimId)
                         if (equipInISpaceList.size>0){
+                            logger.debug("数据22222 = ${equipInISpaceList.toJson()}")
                             list.addAll(equipInISpaceList)
                         }
                     }else{
                         val equipInISpaceList = mapper.equipInISpaceTwo(projectId!!, request.modelId!!, bimId,request.category!!)
                         if (equipInISpaceList.size>0){
+                            logger.debug("数据111 = ${equipInISpaceList.toJson()}")
                             list.addAll(equipInISpaceList)
                         }
                     }
@@ -487,8 +489,9 @@ object ModelScanTaskService : RService<ModelScanTask>(SMybatisDao(ModelScanTask:
                     val subList = list.subList(fromIndex, toIndex)
                     if (subList.size>0){
                         for (equip in subList){
+                            logger.debug("数据 = ${equip.toJson()}")
                             try {
-                                val entity = equipCategoryService.select(SFilter.eq("equipCode", equip.classCode!!)).entity()
+                                val entity = equipCategoryService.select(SFilter.eq("code", equip.classCode!!)).entity()
                                 if (entity!=null){
                                     equip.equipCategory = entity
                                 }

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

@@ -309,6 +309,8 @@ object PropertyScanTaskService : RService<PropertyScanTask>(SMybatisDao(Property
                 val entity = equipFamilyCategoryService.select(SFilter.eq("family", content.classCode!!)).entity()
                 if (entity!=null) {
                     content.equipFamily = entity
+                }else {
+
                 }
             }
         }

+ 10 - 10
scanbuilding/src/main/kotlin/com/persagy/server/services/task/ScanTaskBaseService.kt

@@ -96,7 +96,7 @@ object ScanTaskBaseService : RService<ScanTaskBase>(SMybatisDao(ScanTaskBase::cl
                         val type = object : TypeToken<ArrayList<FloorDic>>() {
                         }.type
                         val siInSpList = gson.fromJson<ArrayList<FloorDic>>(newStr, type)
-                        floor.floorList = siInSpList
+                        floor.floor = siInSpList
                         floor.floorListStr = null
                     }
                 }
@@ -110,26 +110,26 @@ object ScanTaskBaseService : RService<ScanTaskBase>(SMybatisDao(ScanTaskBase::cl
                     }
                     /** 处理楼层是否有未明确楼层 */
                     for(building in pageQuery.content!!){
-                        if (building.floorList!=null&&building.floorList!!.size>0){
+                        if (building.floor!=null&&building.floor!!.size>0){
 
                                 val equipScanTaskList = select(
-                                    SFilter.eq("projectId", projectId), SFilter.eq("buildingId", building.buildingId!!),
+                                    SFilter.eq("projectId", projectId), SFilter.eq("buildingId", building.id!!),
                                         SFilter.isNull("floorId"),SFilter.eq("taskSource", taskSource)).exec()
                                 if (equipScanTaskList.size>0){
                                     val floorDic = FloorDic()
-                                    floorDic.floorName = "未明确楼层"
-                                    building.floorList!!.add(0,floorDic)
+                                    floorDic.localName = "未明确楼层"
+                                    building.floor!!.add(0,floorDic)
                                 }
 
                         }else{
-                            val equipScanTaskList = select(SFilter.eq("projectId", projectId), SFilter.eq("buildingId", building.buildingId!!),
+                            val equipScanTaskList = select(SFilter.eq("projectId", projectId), SFilter.eq("buildingId", building.id!!),
                                     SFilter.isNull("floorId"),SFilter.eq("taskSource", taskSource)).exec()
                             if (equipScanTaskList.size>0){
                                 val list = ArrayList<FloorDic>()
                                 val floorDic = FloorDic()
-                                floorDic.floorName = "未明确楼层"
+                                floorDic.localName = "未明确楼层"
                                 list.add(floorDic)
-                                building.floorList= list
+                                building.floor= list
                             }
                         }
                     }
@@ -137,7 +137,7 @@ object ScanTaskBaseService : RService<ScanTaskBase>(SMybatisDao(ScanTaskBase::cl
                     val equipScanTaskList = select(SFilter.eq("projectId", projectId), SFilter.isNull("buildingId"),SFilter.eq("taskSource", taskSource)).exec()
                     if (equipScanTaskList.size>0){
                         val buildingDic = BuildingDic()
-                        buildingDic.buildingName = "未明确建筑"
+                        buildingDic.localName = "未明确建筑"
                         pageQuery.content!!.add(0,buildingDic)
                     }
                 }
@@ -156,7 +156,7 @@ object ScanTaskBaseService : RService<ScanTaskBase>(SMybatisDao(ScanTaskBase::cl
                     if (equipScanTaskList.size > 0) {
                         val list = ArrayList<BuildingDic>()
                         val buildingDic = BuildingDic()
-                        buildingDic.buildingName = "未明确建筑"
+                        buildingDic.localName = "未明确建筑"
                         list.add(buildingDic)
                         pageQuery.content = list
                     }

+ 1 - 1
scanbuilding/src/main/resources/application-test.yml

@@ -7,7 +7,7 @@ spring:
     #    username:                           postgres
     #    password:                           123qwe!@#
 #    url:                                jdbc:postgresql://172.17.100.16:5432/datacenter
-#    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
+#    url:                                jdbc:postgresql://datacenter:5432/datacenter
     url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
     username:                           postgres
     #    password:                           persagy_2020qwe!@#