Forráskód Böngészése

添加中间表处理类

zhangqiankun 3 éve
szülő
commit
17875b1dbd
21 módosított fájl, 995 hozzáadás és 1 törlés
  1. 82 0
      src/main/java/com/persagy/transfer/controller/WdclassRelPersagyController.java
  2. 82 0
      src/main/java/com/persagy/transfer/controller/WdfacilityRelPersagyController.java
  3. 72 0
      src/main/java/com/persagy/transfer/controller/WdprojRelPersagyprojController.java
  4. 19 0
      src/main/java/com/persagy/transfer/mapper/WdclassRelPersagyMapper.java
  5. 19 0
      src/main/java/com/persagy/transfer/mapper/WdfacilityRelPersagyMapper.java
  6. 19 0
      src/main/java/com/persagy/transfer/mapper/WdprojRelPersagyprojMapper.java
  7. 150 0
      src/main/java/com/persagy/transfer/pojo/dto/WdclassRelPersagy.java
  8. 282 0
      src/main/java/com/persagy/transfer/pojo/dto/WdfacilityRelPersagy.java
  9. 109 0
      src/main/java/com/persagy/transfer/pojo/dto/WdprojRelPersagyproj.java
  10. 17 0
      src/main/java/com/persagy/transfer/service/IWdclassRelPersagyService.java
  11. 17 0
      src/main/java/com/persagy/transfer/service/IWdfacilityRelPersagyService.java
  12. 17 0
      src/main/java/com/persagy/transfer/service/IWdprojRelPersagyprojService.java
  13. 3 0
      src/main/java/com/persagy/transfer/service/impl/HydomcAssetServiceImpl.java
  14. 3 0
      src/main/java/com/persagy/transfer/service/impl/HydomcAssetspecServiceImpl.java
  15. 21 0
      src/main/java/com/persagy/transfer/service/impl/WdclassRelPersagyServiceImpl.java
  16. 21 0
      src/main/java/com/persagy/transfer/service/impl/WdfacilityRelPersagyServiceImpl.java
  17. 21 0
      src/main/java/com/persagy/transfer/service/impl/WdprojRelPersagyprojServiceImpl.java
  18. 1 1
      src/main/resources/bootstrap.yml
  19. 12 0
      src/main/resources/mapper/WdclassRelPersagyMapper.xml
  20. 18 0
      src/main/resources/mapper/WdfacilityRelPersagyMapper.xml
  21. 10 0
      src/main/resources/mapper/WdprojRelPersagyprojMapper.xml

+ 82 - 0
src/main/java/com/persagy/transfer/controller/WdclassRelPersagyController.java

@@ -0,0 +1,82 @@
+package com.persagy.transfer.controller;
+
+import java.util.List;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.google.common.collect.Lists;
+import com.persagy.common.utils.ResponseResult;
+import com.persagy.common.utils.ResponseUtil;
+import com.persagy.transfer.pojo.dto.WdclassRelPersagy;
+import com.persagy.transfer.service.IWdclassRelPersagyService;
+
+import cn.hutool.core.collection.CollectionUtil;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+
+/**
+ * 万达设备类型表与博锐尚格设备类型表的映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:19:53
+ */
+
+@Api(tags = "万达设备类型表与博锐尚格设备类型表的映射表")
+@RestController
+@RequestMapping(value = "/wdclassRelPersagy", method = RequestMethod.POST)
+public class WdclassRelPersagyController {
+    @Autowired
+    private IWdclassRelPersagyService wdclassRelPersagyService;
+    
+    /**
+     * 列表查询
+     */
+    @ApiOperation(value = "列表查询")
+    @RequestMapping(value = "queryWdclassRelPersagyList")
+    public ResponseResult queryWdclassRelPersagyList(@RequestBody WdclassRelPersagy wdclassRelPersagy) {
+    	LambdaQueryWrapper<WdclassRelPersagy> queryWrapper = new WdclassRelPersagy.BuilderQueryWrapper().builder();
+    	List<WdclassRelPersagy> list = this.wdclassRelPersagyService.list(queryWrapper);
+    	if (CollectionUtil.isEmpty(list)) {
+			return ResponseUtil.successResult(Lists.newArrayList(), 0L);
+		}
+        return ResponseUtil.successResult(list, (long)list.size());
+    }
+
+    /**
+     * 新增
+     */
+	@ApiOperation(value = "保存")
+	@RequestMapping(value = "createWdclassRelPersagy")
+    public ResponseResult createWdclassRelPersagy(@RequestBody WdclassRelPersagy wdclassRelPersagy) {
+        boolean result = this.wdclassRelPersagyService.save(wdclassRelPersagy);
+        return result ? ResponseUtil.successResult("保存成功") : ResponseUtil.errorResult("保存失败");
+    }
+    
+    /**
+     * 更新
+     */
+	@ApiOperation(value = "更新")
+	@RequestMapping(value = "updateWdclassRelPersagy")
+    public ResponseResult updateWdclassRelPersagy(@RequestBody WdclassRelPersagy wdclassRelPersagy) {
+        boolean result = this.wdclassRelPersagyService.updateById(wdclassRelPersagy);
+        return result ? ResponseUtil.successResult("更新成功") : ResponseUtil.errorResult("更新失败");
+    }
+
+    /**
+     * 物理删除
+     */
+    @ApiOperation(value = "删除")
+    @RequestMapping(value = "deleteWdclassRelPersagy")
+    public ResponseResult deleteWdclassRelPersagy(@RequestBody WdclassRelPersagy wdclassRelPersagy) {
+        boolean result = this.wdclassRelPersagyService.removeById(wdclassRelPersagy.getId());
+        return result ? ResponseUtil.successResult("删除成功") : ResponseUtil.errorResult("删除失败");
+    }
+    
+}

+ 82 - 0
src/main/java/com/persagy/transfer/controller/WdfacilityRelPersagyController.java

@@ -0,0 +1,82 @@
+package com.persagy.transfer.controller;
+
+import java.util.List;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.google.common.collect.Lists;
+import com.persagy.common.utils.ResponseResult;
+import com.persagy.common.utils.ResponseUtil;
+import com.persagy.transfer.pojo.dto.WdfacilityRelPersagy;
+import com.persagy.transfer.service.IWdfacilityRelPersagyService;
+
+import cn.hutool.core.collection.CollectionUtil;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+
+/**
+ * 万达设备参数信息表与博锐尚格信息点的映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:06:42
+ */
+
+@Api(tags = "万达设备参数信息表与博锐尚格信息点的映射表")
+@RestController
+@RequestMapping(value = "/wdfacilityRelPersagy", method = RequestMethod.POST)
+public class WdfacilityRelPersagyController {
+    @Autowired
+    private IWdfacilityRelPersagyService wdfacilityRelPersagyService;
+    
+    /**
+     * 列表查询
+     */
+    @ApiOperation(value = "列表查询")
+    @RequestMapping(value = "queryWdfacilityRelPersagyList")
+    public ResponseResult queryWdfacilityRelPersagyList(@RequestBody WdfacilityRelPersagy wdfacilityRelPersagy) {
+    	LambdaQueryWrapper<WdfacilityRelPersagy> queryWrapper = new WdfacilityRelPersagy.BuilderQueryWrapper().builder();
+    	List<WdfacilityRelPersagy> list = this.wdfacilityRelPersagyService.list(queryWrapper);
+    	if (CollectionUtil.isEmpty(list)) {
+			return ResponseUtil.successResult(Lists.newArrayList(), 0L);
+		}
+        return ResponseUtil.successResult(list, (long)list.size());
+    }
+
+    /**
+     * 新增
+     */
+	@ApiOperation(value = "保存")
+	@RequestMapping(value = "createWdfacilityRelPersagy")
+    public ResponseResult createWdfacilityRelPersagy(@RequestBody WdfacilityRelPersagy wdfacilityRelPersagy) {
+        boolean result = this.wdfacilityRelPersagyService.save(wdfacilityRelPersagy);
+        return result ? ResponseUtil.successResult("保存成功") : ResponseUtil.errorResult("保存失败");
+    }
+    
+    /**
+     * 更新
+     */
+	@ApiOperation(value = "更新")
+	@RequestMapping(value = "updateWdfacilityRelPersagy")
+    public ResponseResult updateWdfacilityRelPersagy(@RequestBody WdfacilityRelPersagy wdfacilityRelPersagy) {
+        boolean result = this.wdfacilityRelPersagyService.updateById(wdfacilityRelPersagy);
+        return result ? ResponseUtil.successResult("更新成功") : ResponseUtil.errorResult("更新失败");
+    }
+
+    /**
+     * 物理删除
+     */
+    @ApiOperation(value = "删除")
+    @RequestMapping(value = "deleteWdfacilityRelPersagy")
+    public ResponseResult deleteWdfacilityRelPersagy(@RequestBody WdfacilityRelPersagy wdfacilityRelPersagy) {
+        boolean result = this.wdfacilityRelPersagyService.removeById(wdfacilityRelPersagy.getId());
+        return result ? ResponseUtil.successResult("删除成功") : ResponseUtil.errorResult("删除失败");
+    }
+    
+}

+ 72 - 0
src/main/java/com/persagy/transfer/controller/WdprojRelPersagyprojController.java

@@ -0,0 +1,72 @@
+package com.persagy.transfer.controller;
+
+import java.util.List;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.google.common.collect.Lists;
+import com.persagy.common.utils.ResponseResult;
+import com.persagy.common.utils.ResponseUtil;
+import com.persagy.transfer.pojo.dto.WdprojRelPersagyproj;
+import com.persagy.transfer.service.IWdprojRelPersagyprojService;
+
+import cn.hutool.core.collection.CollectionUtil;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+
+/**
+ * 万达项目ID与博锐尚格项目ID映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:06:42
+ */
+
+@Api(tags = "万达项目ID与博锐尚格项目ID映射表")
+@RestController
+@RequestMapping(value = "/wdprojRelPersagyproj", method = RequestMethod.POST)
+public class WdprojRelPersagyprojController {
+    @Autowired
+    private IWdprojRelPersagyprojService wdprojRelPersagyprojService;
+    
+    /**
+     * 列表查询
+     */
+    @ApiOperation(value = "列表查询")
+    @RequestMapping(value = "queryWdprojRelPersagyprojList")
+    public ResponseResult queryWdprojRelPersagyprojList(@RequestBody WdprojRelPersagyproj wdprojRelPersagyproj) {
+    	LambdaQueryWrapper<WdprojRelPersagyproj> queryWrapper = new WdprojRelPersagyproj.BuilderQueryWrapper().builder();
+    	List<WdprojRelPersagyproj> list = this.wdprojRelPersagyprojService.list(queryWrapper);
+    	if (CollectionUtil.isEmpty(list)) {
+			return ResponseUtil.successResult(Lists.newArrayList(), 0L);
+		}
+        return ResponseUtil.successResult(list, (long)list.size());
+    }
+
+    /**
+     * 新增
+     */
+	@ApiOperation(value = "保存")
+	@RequestMapping(value = "createWdprojRelPersagyproj")
+    public ResponseResult createWdprojRelPersagyproj(@RequestBody WdprojRelPersagyproj wdprojRelPersagyproj) {
+        boolean result = this.wdprojRelPersagyprojService.save(wdprojRelPersagyproj);
+        return result ? ResponseUtil.successResult("保存成功") : ResponseUtil.errorResult("保存失败");
+    }
+    
+    /**
+     * 更新
+     */
+	@ApiOperation(value = "更新")
+	@RequestMapping(value = "updateWdprojRelPersagyproj")
+    public ResponseResult updateWdprojRelPersagyproj(@RequestBody WdprojRelPersagyproj wdprojRelPersagyproj) {
+        boolean result = this.wdprojRelPersagyprojService.updateById(wdprojRelPersagyproj);
+        return result ? ResponseUtil.successResult("更新成功") : ResponseUtil.errorResult("更新失败");
+    }
+
+}

+ 19 - 0
src/main/java/com/persagy/transfer/mapper/WdclassRelPersagyMapper.java

@@ -0,0 +1,19 @@
+package com.persagy.transfer.mapper;
+
+import org.apache.ibatis.annotations.Mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.persagy.transfer.pojo.dto.WdclassRelPersagy;
+
+/**
+ * 万达设备类型表与博锐尚格设备类型表的映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:19:53
+ */
+@Mapper
+public interface WdclassRelPersagyMapper extends BaseMapper<WdclassRelPersagy> {
+
+}

+ 19 - 0
src/main/java/com/persagy/transfer/mapper/WdfacilityRelPersagyMapper.java

@@ -0,0 +1,19 @@
+package com.persagy.transfer.mapper;
+
+import org.apache.ibatis.annotations.Mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.persagy.transfer.pojo.dto.WdfacilityRelPersagy;
+
+/**
+ * 万达设备参数信息表与博锐尚格信息点的映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:06:42
+ */
+@Mapper
+public interface WdfacilityRelPersagyMapper extends BaseMapper<WdfacilityRelPersagy> {
+
+}

+ 19 - 0
src/main/java/com/persagy/transfer/mapper/WdprojRelPersagyprojMapper.java

@@ -0,0 +1,19 @@
+package com.persagy.transfer.mapper;
+
+import org.apache.ibatis.annotations.Mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.persagy.transfer.pojo.dto.WdprojRelPersagyproj;
+
+/**
+ * 万达项目ID与博锐尚格项目ID映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:06:42
+ */
+@Mapper
+public interface WdprojRelPersagyprojMapper extends BaseMapper<WdprojRelPersagyproj> {
+
+}

+ 150 - 0
src/main/java/com/persagy/transfer/pojo/dto/WdclassRelPersagy.java

@@ -0,0 +1,150 @@
+package com.persagy.transfer.pojo.dto;
+
+import com.baomidou.mybatisplus.annotation.FieldStrategy;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
+import com.persagy.common.model.BaseEntity;
+import com.persagy.common.utils.StringUtil;
+
+import lombok.EqualsAndHashCode;
+import lombok.Getter;
+import lombok.Setter;
+import lombok.ToString;
+
+/**
+ * 万达设备类型表与博锐尚格设备类型表的映射表
+ * 
+ * @version 1.0.0
+ * @company persagy
+ * @author zhangqiankun
+ * @date 2021-09-16 11:19:53
+ */
+@Getter
+@Setter
+@ToString
+@EqualsAndHashCode(callSuper = false)
+@TableName("wdclass_rel_persagy")
+public class WdclassRelPersagy extends BaseEntity<WdclassRelPersagy> {
+	private static final long serialVersionUID = 6267094592796218298L;
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String classCode; // BDTP类编码
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String wdClassCode; // 万达类编码
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String wdBuildCode; // 万达构建分类编码
+
+	public static Builder builder() {
+		return new Builder();
+	}
+
+	public static class BuilderQueryWrapper {
+
+		private LambdaQueryWrapper<WdclassRelPersagy> queryWrapper = new LambdaQueryWrapper<WdclassRelPersagy>();
+
+		public BuilderQueryWrapper idEq(String id) {
+			if (StringUtil.isNotBlank(id)) {
+				queryWrapper.eq(WdclassRelPersagy::getId, id);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper classCodeEq(String classCode) {
+			if (StringUtil.isNotBlank(classCode)) {
+				queryWrapper.eq(WdclassRelPersagy::getClassCode, classCode);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper wdClassCodeEq(String wdClassCode) {
+			if (StringUtil.isNotBlank(wdClassCode)) {
+				queryWrapper.eq(WdclassRelPersagy::getWdClassCode, wdClassCode);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper wdBuildCodeEq(String wdBuildCode) {
+			if (StringUtil.isNotBlank(wdBuildCode)) {
+				queryWrapper.eq(WdclassRelPersagy::getWdBuildCode, wdBuildCode);
+			}
+			return this;
+		}
+
+		public LambdaQueryWrapper<WdclassRelPersagy> builder() {
+			return queryWrapper;
+		}
+
+	}
+
+	public static class BuilderUpdateWrapper {
+
+		private LambdaUpdateWrapper<WdclassRelPersagy> updateWrapper = new LambdaUpdateWrapper<WdclassRelPersagy>();
+
+		public BuilderUpdateWrapper idEq(String id) {
+			if (StringUtil.isNotBlank(id)) {
+				updateWrapper.eq(WdclassRelPersagy::getId, id);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper classCodeEq(String classCode) {
+			if (StringUtil.isNotBlank(classCode)) {
+				updateWrapper.eq(WdclassRelPersagy::getClassCode, classCode);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper wdClassCodeEq(String wdClassCode) {
+			if (StringUtil.isNotBlank(wdClassCode)) {
+				updateWrapper.eq(WdclassRelPersagy::getWdClassCode, wdClassCode);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper wdBuildCodeEq(String wdBuildCode) {
+			if (StringUtil.isNotBlank(wdBuildCode)) {
+				updateWrapper.eq(WdclassRelPersagy::getWdBuildCode, wdBuildCode);
+			}
+			return this;
+		}
+
+		public LambdaUpdateWrapper<WdclassRelPersagy> builder() {
+			return updateWrapper;
+		}
+
+	}
+
+	public static class Builder {
+
+		private WdclassRelPersagy wdclassRelPersagy = new WdclassRelPersagy();
+
+		public Builder id(String id) {
+			wdclassRelPersagy.setId(id);
+			return this;
+		}
+
+		public Builder classCode(String classCode) {
+			wdclassRelPersagy.setClassCode(classCode);
+			return this;
+		}
+
+		public Builder wdClassCode(String wdClassCode) {
+			wdclassRelPersagy.setWdClassCode(wdClassCode);
+			return this;
+		}
+
+		public Builder wdBuildCode(String wdBuildCode) {
+			wdclassRelPersagy.setWdBuildCode(wdBuildCode);
+			return this;
+		}
+
+		public WdclassRelPersagy build() {
+			return wdclassRelPersagy;
+		}
+
+	}
+}

+ 282 - 0
src/main/java/com/persagy/transfer/pojo/dto/WdfacilityRelPersagy.java

@@ -0,0 +1,282 @@
+package com.persagy.transfer.pojo.dto;
+
+import com.baomidou.mybatisplus.annotation.FieldStrategy;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
+import com.persagy.common.model.BaseEntity;
+import com.persagy.common.utils.StringUtil;
+
+import lombok.EqualsAndHashCode;
+import lombok.Getter;
+import lombok.Setter;
+import lombok.ToString;
+
+/**
+ * 万达设备参数信息表与博锐尚格信息点的映射表
+ * 
+ * @version 1.0.0
+ * @company persagy
+ * @author zhangqiankun
+ * @date 2021-09-16 11:06:42
+ */
+@Getter
+@Setter
+@ToString
+@EqualsAndHashCode(callSuper = false)
+@TableName("wdfacility_rel_persagy")
+public class WdfacilityRelPersagy extends BaseEntity<WdfacilityRelPersagy> {
+	private static final long serialVersionUID = 522062164350721510L;
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String code; // 中台数据信息点编码
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String classCode; // 类型编码
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String classstrucrureid; // 万达设备分类表id
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String assetattrid; // 万达设备参数id
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String classqc; // 设备分类名称
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String csdesc; // 设备参数名称
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String datatype; // 设备参数类型
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String measureunitid; // 设备参数单位编码
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String csjldw; // 设备参数单位名称
+
+	public static Builder builder() {
+		return new Builder();
+	}
+
+	public static class BuilderQueryWrapper {
+
+		private LambdaQueryWrapper<WdfacilityRelPersagy> queryWrapper = new LambdaQueryWrapper<WdfacilityRelPersagy>();
+
+		public BuilderQueryWrapper idEq(String id) {
+			if (StringUtil.isNotBlank(id)) {
+				queryWrapper.eq(WdfacilityRelPersagy::getId, id);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper codeEq(String code) {
+			if (StringUtil.isNotBlank(code)) {
+				queryWrapper.eq(WdfacilityRelPersagy::getCode, code);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper classCodeEq(String classCode) {
+			if (StringUtil.isNotBlank(classCode)) {
+				queryWrapper.eq(WdfacilityRelPersagy::getClassCode, classCode);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper classstrucrureidEq(String classstrucrureid) {
+			if (StringUtil.isNotBlank(classstrucrureid)) {
+				queryWrapper.eq(WdfacilityRelPersagy::getClassstrucrureid, classstrucrureid);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper assetattridEq(String assetattrid) {
+			if (StringUtil.isNotBlank(assetattrid)) {
+				queryWrapper.eq(WdfacilityRelPersagy::getAssetattrid, assetattrid);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper classqcEq(String classqc) {
+			if (StringUtil.isNotBlank(classqc)) {
+				queryWrapper.eq(WdfacilityRelPersagy::getClassqc, classqc);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper csdescEq(String csdesc) {
+			if (StringUtil.isNotBlank(csdesc)) {
+				queryWrapper.eq(WdfacilityRelPersagy::getCsdesc, csdesc);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper datatypeEq(String datatype) {
+			if (StringUtil.isNotBlank(datatype)) {
+				queryWrapper.eq(WdfacilityRelPersagy::getDatatype, datatype);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper measureunitidEq(String measureunitid) {
+			if (null != measureunitid) {
+				queryWrapper.eq(WdfacilityRelPersagy::getMeasureunitid, measureunitid);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper csjldwEq(String csjldw) {
+			if (StringUtil.isNotBlank(csjldw)) {
+				queryWrapper.eq(WdfacilityRelPersagy::getCsjldw, csjldw);
+			}
+			return this;
+		}
+
+		public LambdaQueryWrapper<WdfacilityRelPersagy> builder() {
+			return queryWrapper;
+		}
+
+	}
+
+	public static class BuilderUpdateWrapper {
+
+		private LambdaUpdateWrapper<WdfacilityRelPersagy> updateWrapper = new LambdaUpdateWrapper<WdfacilityRelPersagy>();
+
+		public BuilderUpdateWrapper idEq(String id) {
+			if (StringUtil.isNotBlank(id)) {
+				updateWrapper.eq(WdfacilityRelPersagy::getId, id);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper codeEq(String code) {
+			if (StringUtil.isNotBlank(code)) {
+				updateWrapper.eq(WdfacilityRelPersagy::getCode, code);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper classCodeEq(String classCode) {
+			if (StringUtil.isNotBlank(classCode)) {
+				updateWrapper.eq(WdfacilityRelPersagy::getClassCode, classCode);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper classstrucrureidEq(String classstrucrureid) {
+			if (StringUtil.isNotBlank(classstrucrureid)) {
+				updateWrapper.eq(WdfacilityRelPersagy::getClassstrucrureid, classstrucrureid);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper assetattridEq(String assetattrid) {
+			if (StringUtil.isNotBlank(assetattrid)) {
+				updateWrapper.eq(WdfacilityRelPersagy::getAssetattrid, assetattrid);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper classqcEq(String classqc) {
+			if (StringUtil.isNotBlank(classqc)) {
+				updateWrapper.eq(WdfacilityRelPersagy::getClassqc, classqc);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper csdescEq(String csdesc) {
+			if (StringUtil.isNotBlank(csdesc)) {
+				updateWrapper.eq(WdfacilityRelPersagy::getCsdesc, csdesc);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper datatypeEq(String datatype) {
+			if (StringUtil.isNotBlank(datatype)) {
+				updateWrapper.eq(WdfacilityRelPersagy::getDatatype, datatype);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper measureunitidEq(String measureunitid) {
+			if (null != measureunitid) {
+				updateWrapper.eq(WdfacilityRelPersagy::getMeasureunitid, measureunitid);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper csjldwEq(String csjldw) {
+			if (StringUtil.isNotBlank(csjldw)) {
+				updateWrapper.eq(WdfacilityRelPersagy::getCsjldw, csjldw);
+			}
+			return this;
+		}
+
+		public LambdaUpdateWrapper<WdfacilityRelPersagy> builder() {
+			return updateWrapper;
+		}
+
+	}
+
+	public static class Builder {
+
+		private WdfacilityRelPersagy wdfacilityRelPersagy = new WdfacilityRelPersagy();
+
+		public Builder id(String id) {
+			wdfacilityRelPersagy.setId(id);
+			return this;
+		}
+
+		public Builder code(String code) {
+			wdfacilityRelPersagy.setCode(code);
+			return this;
+		}
+
+		public Builder classCode(String classCode) {
+			wdfacilityRelPersagy.setClassCode(classCode);
+			return this;
+		}
+
+		public Builder classstrucrureid(String classstrucrureid) {
+			wdfacilityRelPersagy.setClassstrucrureid(classstrucrureid);
+			return this;
+		}
+
+		public Builder assetattrid(String assetattrid) {
+			wdfacilityRelPersagy.setAssetattrid(assetattrid);
+			return this;
+		}
+
+		public Builder classqc(String classqc) {
+			wdfacilityRelPersagy.setClassqc(classqc);
+			return this;
+		}
+
+		public Builder csdesc(String csdesc) {
+			wdfacilityRelPersagy.setCsdesc(csdesc);
+			return this;
+		}
+
+		public Builder datatype(String datatype) {
+			wdfacilityRelPersagy.setDatatype(datatype);
+			return this;
+		}
+
+		public Builder measureunitid(String measureunitid) {
+			wdfacilityRelPersagy.setMeasureunitid(measureunitid);
+			return this;
+		}
+
+		public Builder csjldw(String csjldw) {
+			wdfacilityRelPersagy.setCsjldw(csjldw);
+			return this;
+		}
+
+		public WdfacilityRelPersagy build() {
+			return wdfacilityRelPersagy;
+		}
+
+	}
+}

+ 109 - 0
src/main/java/com/persagy/transfer/pojo/dto/WdprojRelPersagyproj.java

@@ -0,0 +1,109 @@
+package com.persagy.transfer.pojo.dto;
+
+import com.baomidou.mybatisplus.annotation.FieldStrategy;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
+import com.baomidou.mybatisplus.extension.activerecord.Model;
+import com.persagy.common.utils.StringUtil;
+
+import lombok.EqualsAndHashCode;
+import lombok.Getter;
+import lombok.Setter;
+import lombok.ToString;
+
+/**
+ * 万达项目ID与博锐尚格项目ID映射表
+ * 
+ * @version 1.0.0
+ * @company persagy
+ * @author zhangqiankun
+ * @date 2021-09-16 11:06:42
+ */
+@Getter
+@Setter
+@ToString
+@EqualsAndHashCode(callSuper = false)
+@TableName("wdproj_rel_persagyproj")
+public class WdprojRelPersagyproj extends Model<WdprojRelPersagyproj> {
+	private static final long serialVersionUID = 8584696091624983461L;
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String persagyProjectid; // 万达项目id
+
+	@TableField(updateStrategy = FieldStrategy.NOT_EMPTY)
+	private String wdProjectid; // 万达项目id
+
+	public static Builder builder() {
+		return new Builder();
+	}
+
+	public static class BuilderQueryWrapper {
+
+		private LambdaQueryWrapper<WdprojRelPersagyproj> queryWrapper = new LambdaQueryWrapper<WdprojRelPersagyproj>();
+
+		public BuilderQueryWrapper persagyProjectidEq(String persagyProjectid) {
+			if (StringUtil.isNotBlank(persagyProjectid)) {
+				queryWrapper.eq(WdprojRelPersagyproj::getPersagyProjectid, persagyProjectid);
+			}
+			return this;
+		}
+
+		public BuilderQueryWrapper wdProjectidEq(String wdProjectid) {
+			if (StringUtil.isNotBlank(wdProjectid)) {
+				queryWrapper.eq(WdprojRelPersagyproj::getWdProjectid, wdProjectid);
+			}
+			return this;
+		}
+
+		public LambdaQueryWrapper<WdprojRelPersagyproj> builder() {
+			return queryWrapper;
+		}
+
+	}
+
+	public static class BuilderUpdateWrapper {
+
+		private LambdaUpdateWrapper<WdprojRelPersagyproj> updateWrapper = new LambdaUpdateWrapper<WdprojRelPersagyproj>();
+
+		public BuilderUpdateWrapper persagyProjectidEq(String persagyProjectid) {
+			if (StringUtil.isNotBlank(persagyProjectid)) {
+				updateWrapper.eq(WdprojRelPersagyproj::getPersagyProjectid, persagyProjectid);
+			}
+			return this;
+		}
+
+		public BuilderUpdateWrapper wdProjectidEq(String wdProjectid) {
+			if (StringUtil.isNotBlank(wdProjectid)) {
+				updateWrapper.eq(WdprojRelPersagyproj::getWdProjectid, wdProjectid);
+			}
+			return this;
+		}
+
+		public LambdaUpdateWrapper<WdprojRelPersagyproj> builder() {
+			return updateWrapper;
+		}
+
+	}
+
+	public static class Builder {
+
+		private WdprojRelPersagyproj wdprojRelPersagyproj = new WdprojRelPersagyproj();
+
+		public Builder persagyProjectid(String persagyProjectid) {
+			wdprojRelPersagyproj.setPersagyProjectid(persagyProjectid);
+			return this;
+		}
+
+		public Builder wdProjectid(String wdProjectid) {
+			wdprojRelPersagyproj.setWdProjectid(wdProjectid);
+			return this;
+		}
+
+		public WdprojRelPersagyproj build() {
+			return wdprojRelPersagyproj;
+		}
+
+	}
+}

+ 17 - 0
src/main/java/com/persagy/transfer/service/IWdclassRelPersagyService.java

@@ -0,0 +1,17 @@
+package com.persagy.transfer.service;
+
+import com.persagy.common.service.ISuperService;
+import com.persagy.transfer.pojo.dto.WdclassRelPersagy;
+
+/**
+ * 万达设备类型表与博锐尚格设备类型表的映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:19:53
+ */
+public interface IWdclassRelPersagyService extends ISuperService<WdclassRelPersagy> {
+
+}
+

+ 17 - 0
src/main/java/com/persagy/transfer/service/IWdfacilityRelPersagyService.java

@@ -0,0 +1,17 @@
+package com.persagy.transfer.service;
+
+import com.persagy.common.service.ISuperService;
+import com.persagy.transfer.pojo.dto.WdfacilityRelPersagy;
+
+/**
+ * 万达设备参数信息表与博锐尚格信息点的映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:06:42
+ */
+public interface IWdfacilityRelPersagyService extends ISuperService<WdfacilityRelPersagy> {
+
+}
+

+ 17 - 0
src/main/java/com/persagy/transfer/service/IWdprojRelPersagyprojService.java

@@ -0,0 +1,17 @@
+package com.persagy.transfer.service;
+
+import com.persagy.common.service.ISuperService;
+import com.persagy.transfer.pojo.dto.WdprojRelPersagyproj;
+
+/**
+ * 万达项目ID与博锐尚格项目ID映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:06:42
+ */
+public interface IWdprojRelPersagyprojService extends ISuperService<WdprojRelPersagyproj> {
+
+}
+

+ 3 - 0
src/main/java/com/persagy/transfer/service/impl/HydomcAssetServiceImpl.java

@@ -2,7 +2,9 @@ package com.persagy.transfer.service.impl;
 
 import org.springframework.stereotype.Service;
 
+import com.baomidou.dynamic.datasource.annotation.DS;
 import com.persagy.common.service.impl.SuperServiceImpl;
+import com.persagy.transfer.constant.SwitchConstant;
 import com.persagy.transfer.mapper.HydomcAssetMapper;
 import com.persagy.transfer.pojo.dto.HydomcAsset;
 import com.persagy.transfer.service.IHydomcAssetService;
@@ -16,6 +18,7 @@ import com.persagy.transfer.service.IHydomcAssetService;
  * @date 2021-09-16 10:45:41
  */
 @Service
+@DS(value = SwitchConstant.DS_MASTER_2)
 public class HydomcAssetServiceImpl extends SuperServiceImpl<HydomcAssetMapper, HydomcAsset> implements IHydomcAssetService {
 
 }

+ 3 - 0
src/main/java/com/persagy/transfer/service/impl/HydomcAssetspecServiceImpl.java

@@ -2,7 +2,9 @@ package com.persagy.transfer.service.impl;
 
 import org.springframework.stereotype.Service;
 
+import com.baomidou.dynamic.datasource.annotation.DS;
 import com.persagy.common.service.impl.SuperServiceImpl;
+import com.persagy.transfer.constant.SwitchConstant;
 import com.persagy.transfer.mapper.HydomcAssetspecMapper;
 import com.persagy.transfer.pojo.dto.HydomcAssetspec;
 import com.persagy.transfer.service.IHydomcAssetspecService;
@@ -16,6 +18,7 @@ import com.persagy.transfer.service.IHydomcAssetspecService;
  * @date 2021-09-16 10:45:41
  */
 @Service
+@DS(value = SwitchConstant.DS_MASTER_2)
 public class HydomcAssetspecServiceImpl extends SuperServiceImpl<HydomcAssetspecMapper, HydomcAssetspec> implements IHydomcAssetspecService {
 
 }

+ 21 - 0
src/main/java/com/persagy/transfer/service/impl/WdclassRelPersagyServiceImpl.java

@@ -0,0 +1,21 @@
+package com.persagy.transfer.service.impl;
+
+import org.springframework.stereotype.Service;
+
+import com.persagy.common.service.impl.SuperServiceImpl;
+import com.persagy.transfer.mapper.WdclassRelPersagyMapper;
+import com.persagy.transfer.pojo.dto.WdclassRelPersagy;
+import com.persagy.transfer.service.IWdclassRelPersagyService;
+
+/**
+ * 万达设备类型表与博锐尚格设备类型表的映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:19:53
+ */
+@Service
+public class WdclassRelPersagyServiceImpl extends SuperServiceImpl<WdclassRelPersagyMapper, WdclassRelPersagy> implements IWdclassRelPersagyService {
+
+}

+ 21 - 0
src/main/java/com/persagy/transfer/service/impl/WdfacilityRelPersagyServiceImpl.java

@@ -0,0 +1,21 @@
+package com.persagy.transfer.service.impl;
+
+import org.springframework.stereotype.Service;
+
+import com.persagy.common.service.impl.SuperServiceImpl;
+import com.persagy.transfer.mapper.WdfacilityRelPersagyMapper;
+import com.persagy.transfer.pojo.dto.WdfacilityRelPersagy;
+import com.persagy.transfer.service.IWdfacilityRelPersagyService;
+
+/**
+ * 万达设备参数信息表与博锐尚格信息点的映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:06:42
+ */
+@Service
+public class WdfacilityRelPersagyServiceImpl extends SuperServiceImpl<WdfacilityRelPersagyMapper, WdfacilityRelPersagy> implements IWdfacilityRelPersagyService {
+
+}

+ 21 - 0
src/main/java/com/persagy/transfer/service/impl/WdprojRelPersagyprojServiceImpl.java

@@ -0,0 +1,21 @@
+package com.persagy.transfer.service.impl;
+
+import org.springframework.stereotype.Service;
+
+import com.persagy.common.service.impl.SuperServiceImpl;
+import com.persagy.transfer.mapper.WdprojRelPersagyprojMapper;
+import com.persagy.transfer.pojo.dto.WdprojRelPersagyproj;
+import com.persagy.transfer.service.IWdprojRelPersagyprojService;
+
+/**
+ * 万达项目ID与博锐尚格项目ID映射表
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021-09-16 11:06:42
+ */
+@Service
+public class WdprojRelPersagyprojServiceImpl extends SuperServiceImpl<WdprojRelPersagyprojMapper, WdprojRelPersagyproj> implements IWdprojRelPersagyprojService {
+
+}

+ 1 - 1
src/main/resources/bootstrap.yml

@@ -57,7 +57,7 @@ spring:
           
 mybatis-plus: 
   mapper-locations: classpath:/*mapper/*.xml
-  typeAliasesPackage: com.persagy.transfer.pojo.bdtp, com.persagy.transfer.pojo.dto
+  typeAliasesPackage: com.persagy.transfer.pojo.dto
       
 integrated: 
   swagger: 

+ 12 - 0
src/main/resources/mapper/WdclassRelPersagyMapper.xml

@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+
+<mapper namespace="com.persagy.transfer.mapper.WdclassRelPersagyMapper">
+    
+	<resultMap id="BaseResultMap" type="com.persagy.transfer.pojo.dto.WdclassRelPersagy">
+			<result column="id" property="id" jdbcType="VARCHAR" />
+			<result column="class_code" property="classCode" jdbcType="VARCHAR" />
+			<result column="wd_class_code" property="wdClassCode" jdbcType="VARCHAR" />
+			<result column="wd_build_code" property="wdBuildCode" jdbcType="VARCHAR" />
+		</resultMap>
+</mapper>

+ 18 - 0
src/main/resources/mapper/WdfacilityRelPersagyMapper.xml

@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+
+<mapper namespace="com.persagy.transfer.mapper.WdfacilityRelPersagyMapper">
+    
+	<resultMap id="BaseResultMap" type="com.persagy.transfer.pojo.dto.WdfacilityRelPersagy">
+		<result column="id" property="id" jdbcType="VARCHAR" />
+		<result column="code" property="code" jdbcType="VARCHAR" />
+		<result column="class_code" property="classCode" jdbcType="VARCHAR" />
+		<result column="classstrucrureid" property="classstrucrureid" jdbcType="VARCHAR" />
+		<result column="assetattrid" property="assetattrid" jdbcType="VARCHAR" />
+		<result column="classqc" property="classqc" jdbcType="VARCHAR" />
+		<result column="csdesc" property="csdesc" jdbcType="VARCHAR" />
+		<result column="datatype" property="datatype" jdbcType="VARCHAR" />
+		<result column="measureunitid" property="measureunitid" jdbcType="VARCHAR" />
+		<result column="csjldw" property="csjldw" jdbcType="VARCHAR" />
+	</resultMap>
+</mapper>

+ 10 - 0
src/main/resources/mapper/WdprojRelPersagyprojMapper.xml

@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+
+<mapper namespace="com.persagy.transfer.mapper.WdprojRelPersagyprojMapper">
+    
+	<resultMap id="BaseResultMap" type="com.persagy.transfer.pojo.dto.WdprojRelPersagyproj">
+		<result column="persagy_projectid" property="persagyProjectid" jdbcType="VARCHAR" />
+		<result column="wd_projectid" property="wdProjectid" jdbcType="VARCHAR" />
+	</resultMap>
+</mapper>