diff --git a/zlpt-common/zlpt-common-swagger/pom.xml b/zlpt-common/zlpt-common-swagger/pom.xml
index d2d86ac..fee53cd 100644
--- a/zlpt-common/zlpt-common-swagger/pom.xml
+++ b/zlpt-common/zlpt-common-swagger/pom.xml
@@ -34,6 +34,10 @@
com.bonus.zlpt
zlpt-common-core
+
+ com.bonus.zlpt
+ zlpt-common-core
+
-
+
diff --git a/zlpt-modules/zlpt-equip/pom.xml b/zlpt-modules/zlpt-equip/pom.xml
index 791e54f..577a91a 100644
--- a/zlpt-modules/zlpt-equip/pom.xml
+++ b/zlpt-modules/zlpt-equip/pom.xml
@@ -71,10 +71,8 @@
com.bonus.zlpt
zlpt-common-log
-
- com.bonus.zlpt
- zlpt-common-log
-
+
+
com.bonus.zlpt
zlpt-common-swagger
diff --git a/zlpt-modules/zlpt-equip/src/main/resources/mapper/DevInfoMapper.xml b/zlpt-modules/zlpt-equip/src/main/resources/mapper/DevInfoMapper.xml
index cf55bd7..d4df72e 100644
--- a/zlpt-modules/zlpt-equip/src/main/resources/mapper/DevInfoMapper.xml
+++ b/zlpt-modules/zlpt-equip/src/main/resources/mapper/DevInfoMapper.xml
@@ -3,7 +3,7 @@
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-
+
@@ -33,6 +33,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+
+
+
@@ -122,7 +125,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
left join ma_type_info p on t.parent_id=p.type_id) t on d.type_id = t.type_id
left join bm_company_info c on d.own_co = c.company_id
left join ma_hot_search h on d.ma_id = h.ma_id
- left join ma_type_info t on d.type_id = t.type_id
+ left join ma_type_info ti on d.type_id = ti.type_id
where d.is_active='1'
order by h.search_num
@@ -308,4 +311,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{maId}
+
\ No newline at end of file
diff --git a/zlpt-modules/zlpt-system/src/main/java/com/bonus/zlpt/system/controller/BaseAddressController.java b/zlpt-modules/zlpt-system/src/main/java/com/bonus/zlpt/system/controller/BaseAddressController.java
index 4efa484..ff049a2 100644
--- a/zlpt-modules/zlpt-system/src/main/java/com/bonus/zlpt/system/controller/BaseAddressController.java
+++ b/zlpt-modules/zlpt-system/src/main/java/com/bonus/zlpt/system/controller/BaseAddressController.java
@@ -1,9 +1,9 @@
-package com.bonus.zlpt.company.controller;
+package com.bonus.zlpt.system.controller;
import com.bonus.zlpt.common.core.web.controller.BaseController;
import com.bonus.zlpt.common.core.web.domain.AjaxResult;
-import com.bonus.zlpt.company.api.domain.BaseAddress;
-import com.bonus.zlpt.company.service.BaseAddressService;
+import com.bonus.zlpt.system.api.domain.BaseAddress;
+import com.bonus.zlpt.system.service.BaseAddressService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;