|
@@ -31,6 +31,8 @@ import com.persagy.base.extensions.toJson
|
|
|
import com.persagy.database.SFilter
|
|
|
import com.persagy.mybatis.SMybatisDao
|
|
|
import com.persagy.server.Opt
|
|
|
+import com.persagy.server.datacenter.models.entities.assistant.DictSpaceProject
|
|
|
+import com.persagy.server.datacenter.models.entities.dictnew.DefClass
|
|
|
import com.persagy.server.datacenter.models.entities.graphtype.RelationTypeProject
|
|
|
import com.persagy.server.datacenter.models.entities.objects.Building
|
|
|
import com.persagy.server.datacenter.models.entities.objects.SpaceOutline
|
|
@@ -72,6 +74,9 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
/** 空间轮廓线 */
|
|
|
val spaceOutlineService = SObjectService(SMybatisDao(SpaceOutline::class.java))
|
|
|
|
|
|
+ /** 空间轮廓线 */
|
|
|
+ val defClassService = SObjectService(SMybatisDao(DefClass::class.java))
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 查询业务空间
|
|
@@ -79,10 +84,9 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
fun querySpaces (request: DCSQueryRequest): SpaceSQueryResponse {
|
|
|
return try {
|
|
|
|
|
|
-
|
|
|
val projectId = SPageContext.getHeader("projectId")
|
|
|
var spaceSQueryResponse = SpaceSQueryResponse()
|
|
|
-
|
|
|
+ spaceSQueryResponse.zoneType = request.zoneType
|
|
|
val listId = ArrayList<String>()
|
|
|
if(!request.buildingId.isNullOrEmpty()&&!request.floorId.isNullOrEmpty()&&request.floorId != "isnull"){
|
|
|
var rSpInFlList: ArrayList<RSpinFl>? = null
|
|
@@ -104,9 +108,9 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
listSFilter.add(SFilter.eq("projectId",projectId))
|
|
|
listSFilter.add(SFilter.inList("id",listId))
|
|
|
if (!request.zoneType.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.eq("objectType",request.zoneType!!))
|
|
|
+ listSFilter.add(SFilter.eq("classCode",request.zoneType!!))
|
|
|
}else if (!request.zoneTypeList.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.inList("objectType",request.zoneTypeList!!))
|
|
|
+ listSFilter.add(SFilter.inList("classCode",request.zoneTypeList!!))
|
|
|
}
|
|
|
val pageQuery = pageQuery(request, listSFilter)
|
|
|
spaceSQueryResponse.message = pageQuery.message
|
|
@@ -120,7 +124,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
|
|
|
}else if(!request.buildingId.isNullOrEmpty()&&!request.floorId.isNullOrEmpty()&&request.floorId == "isnull"){
|
|
|
|
|
|
- val floorList = FloorService.select(SFilter.eq("projectId",projectId!!),SFilter.eq("buildId",request.buildingId!!)).exec()
|
|
|
+ val floorList = FloorService.select(SFilter.eq("projectId",projectId!!),SFilter.eq("buildingId",request.buildingId!!)).exec()
|
|
|
if (floorList.size>0){
|
|
|
val listFloorId = ArrayList<String>()
|
|
|
for (floor in floorList){
|
|
@@ -207,7 +211,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
listSFilter.add(SFilter.eq("projectId",projectId))
|
|
|
listSFilter.add(SFilter.inList("id",listId))
|
|
|
if (!request.zoneTypeList.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.inList("objectType",request.zoneTypeList!!))
|
|
|
+ listSFilter.add(SFilter.inList("classCode",request.zoneTypeList!!))
|
|
|
}
|
|
|
val pageQuery = pageQuery(request, listSFilter)
|
|
|
spaceSQueryResponse.message = pageQuery.message
|
|
@@ -239,9 +243,9 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
listSFilter.add(SFilter.eq("projectId",projectId))
|
|
|
listSFilter.add(SFilter.inList("id",listId))
|
|
|
if (!request.zoneType.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.eq("objectType",request.zoneType!!))
|
|
|
+ listSFilter.add(SFilter.eq("classCode",request.zoneType!!))
|
|
|
}else if (!request.zoneTypeList.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.inList("objectType",request.zoneTypeList!!))
|
|
|
+ listSFilter.add(SFilter.inList("classCode",request.zoneTypeList!!))
|
|
|
}
|
|
|
|
|
|
val pageQuery = pageQuery(request, listSFilter)
|
|
@@ -274,9 +278,9 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
listSFilter.add(SFilter.eq("projectId",projectId))
|
|
|
listSFilter.add(SFilter.inList("id",listId))
|
|
|
if (!request.zoneType.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.eq("objectType",request.zoneType!!))
|
|
|
+ listSFilter.add(SFilter.eq("classCode",request.zoneType!!))
|
|
|
}else if (!request.zoneTypeList.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.inList("objectType",request.zoneTypeList!!))
|
|
|
+ listSFilter.add(SFilter.inList("classCode",request.zoneTypeList!!))
|
|
|
}
|
|
|
val pageQuery = pageQuery(request, listSFilter)
|
|
|
spaceSQueryResponse.message = pageQuery.message
|
|
@@ -317,9 +321,9 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
listSFilter.add(SFilter.not(SFilter.inList("id", listId)))
|
|
|
}
|
|
|
if (!request.zoneType.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.eq("objectType",request.zoneType!!))
|
|
|
+ listSFilter.add(SFilter.eq("classCode",request.zoneType!!))
|
|
|
}else if (!request.zoneTypeList.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.inList("objectType",request.zoneTypeList!!))
|
|
|
+ listSFilter.add(SFilter.inList("classCode",request.zoneTypeList!!))
|
|
|
}
|
|
|
val pageQuery = pageQuery(request, listSFilter)
|
|
|
spaceSQueryResponse.message = pageQuery.message
|
|
@@ -334,9 +338,9 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
var listSFilter = ArrayList<SFilter>()
|
|
|
listSFilter.add(SFilter.eq("projectId",projectId))
|
|
|
if (!request.zoneType.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.eq("objectType",request.zoneType!!))
|
|
|
+ listSFilter.add(SFilter.eq("classCode",request.zoneType!!))
|
|
|
}else if (!request.zoneTypeList.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.inList("objectType",request.zoneTypeList!!))
|
|
|
+ listSFilter.add(SFilter.inList("classCode",request.zoneTypeList!!))
|
|
|
}
|
|
|
val pageQuery = pageQuery(request, listSFilter)
|
|
|
spaceSQueryResponse.message = pageQuery.message
|
|
@@ -351,9 +355,9 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
var listSFilter = ArrayList<SFilter>()
|
|
|
listSFilter.add(SFilter.eq("projectId",projectId!!))
|
|
|
if (!request.zoneType.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.eq("objectType",request.zoneType!!))
|
|
|
+ listSFilter.add(SFilter.eq("classCode",request.zoneType!!))
|
|
|
}else if (!request.zoneTypeList.isNullOrEmpty()){
|
|
|
- listSFilter.add(SFilter.inList("objectType",request.zoneTypeList!!))
|
|
|
+ listSFilter.add(SFilter.inList("classCode",request.zoneTypeList!!))
|
|
|
}
|
|
|
val pageQuery = pageQuery(request, listSFilter)
|
|
|
spaceSQueryResponse.message = pageQuery.message
|
|
@@ -393,7 +397,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
if (buildingList.size>0){
|
|
|
for (building in buildingList){
|
|
|
|
|
|
- val floorList = FloorService.select(SFilter.eq("projectId", projectId),SFilter.eq("buildId", building.id!!)).order("sequenceId desc").exec()
|
|
|
+ val floorList = FloorService.select(SFilter.eq("projectId", projectId),SFilter.eq("buildingId", building.id!!)).order("floorSequenceId desc").exec()
|
|
|
if (floorList.size>0){
|
|
|
building .floor = floorList
|
|
|
}
|
|
@@ -431,78 +435,69 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
/**
|
|
|
* 查询业务空间所有类型
|
|
|
*/
|
|
|
-// fun zoneTypequery(request: DCSQueryRequest):SQueryResponse<DictSpaceProject> {
|
|
|
-// try {
|
|
|
-// /** 项目id */
|
|
|
-// val projectId = SPageContext.getHeader("projectId")
|
|
|
-//
|
|
|
-// val dictSpaceType = dictSpaceProjectService.select(SFilter.eq("projectId", projectId!!)).exec()
|
|
|
-// if (dictSpaceType.size < 1) {
|
|
|
-// val dClassDefList = DClassDefService.select(SFilter.eq("parentId", "Space"), SFilter.not(SFilter.eq("id", "Ispace"))).exec()
|
|
|
-// if (dClassDefList.size > 0) {
|
|
|
-// for (dClassDef in dClassDefList) {
|
|
|
-// val dictSpaceProject = DictSpaceProject()
|
|
|
-// dictSpaceProject.projectId = projectId
|
|
|
-// dictSpaceProject.id = dClassDef.id
|
|
|
-// dictSpaceProject.name = dClassDef.name
|
|
|
-// dictSpaceProject.parentId = dClassDef.parentCode
|
|
|
-// dictSpaceProject.sign = 1
|
|
|
-// dictSpaceProjectService.replace(dictSpaceProject)
|
|
|
-// }
|
|
|
-// }
|
|
|
-// }
|
|
|
-//
|
|
|
-// if (request.floorId.isNullOrEmpty()) {
|
|
|
-// val pageQuery = dictSpaceProjectService.pageQuery(request, arrayListOf(SFilter.eq("projectId", projectId!!), SFilter.eq("parentId","Space")))
|
|
|
-// return pageQuery
|
|
|
-// } else {
|
|
|
-// val pageQuery = dictSpaceProjectService.pageQuery(request, arrayListOf(SFilter.eq("projectId", projectId!!), SFilter.eq("parentId","Space")))
|
|
|
-// val contentList = pageQuery.content
|
|
|
-// if (contentList != null && contentList.size > 0) {
|
|
|
-//
|
|
|
-// for (content in contentList) {
|
|
|
-// if (content.name == "其它") {
|
|
|
-// if (content.zoneType != null && content.zoneType!!.size > 0) {
|
|
|
-// for (type in content.zoneType!!) {
|
|
|
-// val rSpInFlList = RSpInFlService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("floorId", request.floorId!!), SFilter.eq("objectType", type.id!!)).exec()
|
|
|
-// if (rSpInFlList.size > 0) {
|
|
|
-// val idSet = ArrayList<String>()
|
|
|
-// for (rSpInFl in rSpInFlList) {
|
|
|
-// idSet.add(rSpInFl.spaceId!!)
|
|
|
-// }
|
|
|
-// val zoneSpaceBaseList = ZoneSpaceBaseService.select(SFilter.eq("projectId", projectId), SFilter.inList("id", idSet.toList()), SFilter.eq("state", 1)).exec()
|
|
|
-// if (zoneSpaceBaseList.size > 0) {
|
|
|
-// type.count = zoneSpaceBaseList.size
|
|
|
-// }
|
|
|
-// }
|
|
|
-// }
|
|
|
-// }
|
|
|
-// } else {
|
|
|
-// val rSpInFlList = RSpInFlService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("floorId", request.floorId!!), SFilter.eq("objectType", content.id!!)).exec()
|
|
|
-// if (rSpInFlList.size > 0) {
|
|
|
-// val idSet = ArrayList<String>()
|
|
|
-// for (rSpInFl in rSpInFlList) {
|
|
|
-// idSet.add(rSpInFl.spaceId!!)
|
|
|
-// }
|
|
|
-// val zoneSpaceBaseList = ZoneSpaceBaseService.select(SFilter.eq("projectId", projectId), SFilter.inList("id", idSet.toList()), SFilter.eq("state", 1)).exec()
|
|
|
-// if (zoneSpaceBaseList.size > 0) {
|
|
|
-// content.count = zoneSpaceBaseList.size
|
|
|
-// }
|
|
|
-// }
|
|
|
-// }
|
|
|
-// }
|
|
|
-// }
|
|
|
-// return pageQuery
|
|
|
-// }
|
|
|
-// } catch (e: Exception) {
|
|
|
-// e.printStackTrace()
|
|
|
-// return SQueryResponse<DictSpaceProject>(SResponseType.failure,e.message.toString())
|
|
|
-// }
|
|
|
-// } // Fun
|
|
|
+ fun zoneTypequery(request: DCSQueryRequest):SQueryResponse<DictSpaceProject> {
|
|
|
+ try {
|
|
|
+ /** 项目id */
|
|
|
+ val projectId = SPageContext.getHeader("projectId")
|
|
|
+
|
|
|
+ if (request.floorId.isNullOrEmpty()) {
|
|
|
+ val pageQuery = defClassService.pageQuery(request, arrayListOf(SFilter.eq("projectId", projectId!!), SFilter.eq("parentCode","space")))
|
|
|
+ val list = ArrayList<DictSpaceProject>()
|
|
|
+ if (!pageQuery.content.isNullOrEmpty()) {
|
|
|
+ for (content in pageQuery.content!!) {
|
|
|
+ val dictSpaceProject = DictSpaceProject()
|
|
|
+ dictSpaceProject.projectId = projectId
|
|
|
+ dictSpaceProject.id = content.code
|
|
|
+ dictSpaceProject.name = content.name
|
|
|
+ list.add(dictSpaceProject)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ val sQueryResponse = SQueryResponse<DictSpaceProject>()
|
|
|
+ sQueryResponse.content = list
|
|
|
+ sQueryResponse.total = list.size.toLong()
|
|
|
+ sQueryResponse.result = SResponseType.success
|
|
|
+ return sQueryResponse
|
|
|
+ } else {
|
|
|
+ val pageQuery = defClassService.pageQuery(request, arrayListOf(SFilter.eq("projectId", projectId!!), SFilter.eq("parentCode","space")))
|
|
|
+ val contentList = pageQuery.content
|
|
|
+ val list = ArrayList<DictSpaceProject>()
|
|
|
+ if (contentList != null && contentList.size > 0) {
|
|
|
+
|
|
|
+ for (content in contentList) {
|
|
|
+ val dictSpaceProject = DictSpaceProject()
|
|
|
+ dictSpaceProject.projectId = projectId
|
|
|
+ dictSpaceProject.id = content.code
|
|
|
+ dictSpaceProject.name = content.name
|
|
|
+
|
|
|
+ val rSpInFlList = RSpInFlService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("floorId", request.floorId!!), SFilter.eq("objectType", content.id!!)).exec()
|
|
|
+ if (rSpInFlList.size > 0) {
|
|
|
+ val idSet = ArrayList<String>()
|
|
|
+ for (rSpInFl in rSpInFlList) {
|
|
|
+ idSet.add(rSpInFl.spaceId!!)
|
|
|
+ }
|
|
|
+ val zoneSpaceBaseList = ZoneSpaceBaseService.select(SFilter.eq("projectId", projectId), SFilter.inList("id", idSet.toList()), SFilter.eq("state", 1)).exec()
|
|
|
+ if (zoneSpaceBaseList.size > 0) {
|
|
|
+ dictSpaceProject.count = zoneSpaceBaseList.size
|
|
|
+ }
|
|
|
+ }
|
|
|
+ list.add(dictSpaceProject)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ val sQueryResponse = SQueryResponse<DictSpaceProject>()
|
|
|
+ sQueryResponse.content = list
|
|
|
+ sQueryResponse.total = list.size.toLong()
|
|
|
+ sQueryResponse.result = SResponseType.success
|
|
|
+ return sQueryResponse
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ return SQueryResponse(SResponseType.failure,e.message.toString())
|
|
|
+ }
|
|
|
+ } // Fun
|
|
|
|
|
|
|
|
|
override fun onCreateBefore(entity: ZoneSpace): Boolean {
|
|
|
- if (entity.objectType.isNullOrEmpty()){
|
|
|
+ if (entity.classCode.isNullOrEmpty()){
|
|
|
return false
|
|
|
}
|
|
|
|
|
@@ -557,7 +552,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
} catch (e: Exception) {
|
|
|
e.printStackTrace()
|
|
|
}
|
|
|
- ObjInfoService.createInfo(zoneSpace,true,"Sp",zoneSpace.objectType!!)
|
|
|
+ ObjInfoService.createInfo(zoneSpace,true,"Sp",zoneSpace.classCode!!)
|
|
|
}
|
|
|
val projectId = SPageContext.getHeader("projectId")
|
|
|
try {
|
|
@@ -565,7 +560,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
if (!space.buildingId.isNullOrEmpty()&&!space.floorId.isNullOrEmpty()){
|
|
|
val rSpinBd = RSpinBd()
|
|
|
rSpinBd.buildingId = space.buildingId
|
|
|
- rSpinBd.objectType = space.objectType
|
|
|
+ rSpinBd.objectType = space.classCode
|
|
|
rSpinBd.projectId = space.projectId
|
|
|
rSpinBd.spaceId = space.id
|
|
|
rSpinBd.sign = 1
|
|
@@ -574,14 +569,14 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
rSpinFl.buildingId = space.buildingId
|
|
|
rSpinFl.floorId = space.floorId
|
|
|
rSpinFl.projectId = space.projectId
|
|
|
- rSpinFl.objectType = space.objectType
|
|
|
+ rSpinFl.objectType = space.classCode
|
|
|
rSpinFl.spaceId = space.id
|
|
|
rSpinFl.sign = 1
|
|
|
RSpInFlService.insert(rSpinFl)
|
|
|
}else if (!space.buildingId.isNullOrEmpty()&&space.floorId.isNullOrEmpty()){
|
|
|
val rSpinBd = RSpinBd()
|
|
|
rSpinBd.buildingId = space.buildingId
|
|
|
- rSpinBd.objectType = space.objectType
|
|
|
+ rSpinBd.objectType = space.classCode
|
|
|
rSpinBd.projectId = space.projectId
|
|
|
rSpinBd.spaceId = space.id
|
|
|
rSpinBd.sign = 1
|
|
@@ -611,7 +606,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
}
|
|
|
val zoneSpace = entityList[0]
|
|
|
|
|
|
- val relationType = relationTypeProjectservice.select(SFilter.eq("projectId", projectId!!), SFilter.eq("relationType", "eq2sp_in"),SFilter.eq("zoneType", zoneSpace.objectType!!)).entity()
|
|
|
+ val relationType = relationTypeProjectservice.select(SFilter.eq("projectId", projectId!!), SFilter.eq("relationType", "eq2sp_in"),SFilter.eq("zoneType", zoneSpace.classCode!!)).entity()
|
|
|
if (relationType!=null){
|
|
|
relationType.computationalState = 2
|
|
|
relationTypeProjectservice.update(relationType)
|
|
@@ -628,7 +623,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
list.add("name")
|
|
|
ZoneSpaceBaseService.update(entity,list)
|
|
|
|
|
|
- return !entity.objectType.isNullOrEmpty()
|
|
|
+ return !entity.classCode.isNullOrEmpty()
|
|
|
}
|
|
|
|
|
|
override fun onUpdateSuccess(entityList: ArrayList<ZoneSpace>) {
|
|
@@ -647,7 +642,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
} catch (e: Exception) {
|
|
|
e.printStackTrace()
|
|
|
}
|
|
|
- ObjInfoService.createInfo(zoneSpace,false,"Sp",zoneSpace.objectType!!)
|
|
|
+ ObjInfoService.createInfo(zoneSpace,false,"Sp",zoneSpace.classCode!!)
|
|
|
}
|
|
|
|
|
|
try {
|
|
@@ -703,7 +698,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
try {
|
|
|
if (!id.isNullOrEmpty()) {
|
|
|
if (id.startsWith("Fl")) {
|
|
|
- val floor = FloorService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("FloorID", id)).entity()
|
|
|
+ val floor = FloorService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("id", id)).entity()
|
|
|
|
|
|
if (floor!=null){
|
|
|
/** 清除空间和建筑楼层的的数据 */
|
|
@@ -751,16 +746,16 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
if (!id.isNullOrEmpty()) {
|
|
|
if (id.startsWith("Fl")) {
|
|
|
zoneSpace.floorId = id
|
|
|
- val floor = FloorService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("FloorId", id)).entity()
|
|
|
+ val floor = FloorService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("id", id)).entity()
|
|
|
zoneSpace.buildingId = floor?.buildingId
|
|
|
val list = ArrayList<String>()
|
|
|
- list.add("FloorId")
|
|
|
- list.add("BuildingId")
|
|
|
+ list.add("floorId")
|
|
|
+ list.add("buildingId")
|
|
|
update(zoneSpace, list)
|
|
|
} else if (id.startsWith("Bd")) {
|
|
|
val list = ArrayList<String>()
|
|
|
- list.add("FloorId")
|
|
|
- list.add("BuildingId")
|
|
|
+ list.add("floorId")
|
|
|
+ list.add("buildingId")
|
|
|
zoneSpace.buildingId = id
|
|
|
zoneSpace.floorId = null
|
|
|
update(zoneSpace, list)
|
|
@@ -768,8 +763,8 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
} else {
|
|
|
/** 清空建筑楼层 */
|
|
|
val list = ArrayList<String>()
|
|
|
- list.add("FloorId")
|
|
|
- list.add("BuildingId")
|
|
|
+ list.add("floorId")
|
|
|
+ list.add("buildingId")
|
|
|
zoneSpace.buildingId = null
|
|
|
zoneSpace.floorId = null
|
|
|
update(zoneSpace, list)
|
|
@@ -779,7 +774,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
|
|
|
||type == "HeatingZone"||type == "LightingZone"||type == "NetworkZone"
|
|
|
||type == "PowerSupplyZone"||type == "SecurityZone"||type == "TenantZone" ){
|
|
|
/** 发送消息 */
|
|
|
- sendMessages(projectId!!, spaceId!!, id)
|
|
|
+// sendMessages(projectId!!, spaceId!!, id)
|
|
|
/** 修改空间的建筑楼层关系 */
|
|
|
}
|
|
|
}
|