|
@@ -52,7 +52,7 @@ interface IRelationExcelImportMapper {
|
|
|
* @param id2 设备ID
|
|
|
* @return excel需要的记录
|
|
|
*/
|
|
|
- @Insert("INSERT INTO relationship.r_eq2bd(project_id, eq_id, bd_id, type, sign) VALUES(#{projectId}, #{id2}, #{id1}, #{type}, 1)")
|
|
|
+ @Insert("INSERT INTO relationship.r_eq2bd(project_id, eq_id, bd_id, type, sign) VALUES(#{projectId}, #{id1}, #{id2}, #{type}, 1)")
|
|
|
fun eq2bd(projectId: String, type: String, id1: String, id2: String)
|
|
|
|
|
|
/**
|
|
@@ -325,6 +325,18 @@ interface IRelationExcelImportMapper {
|
|
|
* @param projectId 项目ID
|
|
|
* @param type 关系类型
|
|
|
* @param id1 系统ID
|
|
|
+ * @param id2 建筑ID
|
|
|
+ * @return excel需要的记录
|
|
|
+ */
|
|
|
+ @Insert("INSERT INTO public.r_sy_for_bd(project_id, sys_id, building_id, sign) VALUES(#{projectId}, #{id1}, #{id2}, 1)")
|
|
|
+ fun sy2bdfor(projectId: String, type: String, id1: String, id2: String)
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 建筑与竖井关系
|
|
|
+ *
|
|
|
+ * @param projectId 项目ID
|
|
|
+ * @param type 关系类型
|
|
|
+ * @param id1 系统ID
|
|
|
* @param id2 楼层ID
|
|
|
* @return excel需要的记录
|
|
|
*/
|
|
@@ -332,6 +344,18 @@ interface IRelationExcelImportMapper {
|
|
|
fun sy2fl(projectId: String, type: String, id1: String, id2: String)
|
|
|
|
|
|
/**
|
|
|
+ * 建筑与竖井关系
|
|
|
+ *
|
|
|
+ * @param projectId 项目ID
|
|
|
+ * @param type 关系类型
|
|
|
+ * @param id1 系统ID
|
|
|
+ * @param id2 楼层ID
|
|
|
+ * @return excel需要的记录
|
|
|
+ */
|
|
|
+ @Insert("INSERT INTO public.r_sy_for_fl(project_id, sys_id, floor_id, sign) VALUES(#{projectId}, #{id1}, #{id2}, 1)")
|
|
|
+ fun sy2flfor(projectId: String, type: String, id1: String, id2: String)
|
|
|
+
|
|
|
+ /**
|
|
|
* 系统与竖井关系
|
|
|
*
|
|
|
* @param projectId 项目ID
|