hym 4 سال پیش
والد
کامیت
b3bc8953a5

+ 2 - 0
src/main/java/com/zoniot/ccrc/dao/DeviceMapper.java

@@ -3,6 +3,7 @@ package com.zoniot.ccrc.dao;
 import com.zoniot.ccrc.dto.BuildingInfoListDto;
 import com.zoniot.ccrc.dto.BuildingSelectInfoDto;
 import com.zoniot.ccrc.dto.DeviceDto;
+import com.zoniot.ccrc.dto.PriceInfo;
 import com.zoniot.ccrc.entity.Device;
 
 import java.util.List;
@@ -76,4 +77,5 @@ public interface DeviceMapper {
             @Param("longitudeMax") Double longitudeMax,
             @Param("latitudeMin") Double latitudeMin,
             @Param("latitudeMax") Double latitudeMax);
+    List<PriceInfo> getPriceInfo();
 }

+ 7 - 0
src/main/java/com/zoniot/ccrc/dao/SiteMapper.java

@@ -1,6 +1,7 @@
 package com.zoniot.ccrc.dao;
 
 import com.zoniot.ccrc.dto.SiteDto;
+import com.zoniot.ccrc.entity.Customer;
 import com.zoniot.ccrc.entity.Site;
 import org.apache.ibatis.annotations.Mapper;
 import org.apache.ibatis.annotations.Param;
@@ -28,4 +29,10 @@ public interface SiteMapper {
     int findByCustomerIdUnique(@Param("id") Integer id, @Param("customerId") Integer customerId);
 
     List<Integer> getSiteCustomerIds();
+    List<Customer> getCustomerList();
+
+    void updateCustomerSiteId(@Param("id") Integer id, @Param("customerId") Integer customerId);
+
+    void deleteCustomerRelations(@Param("id") Integer id);
+
 }

+ 3 - 0
src/main/resources/mapper/DeviceMapper.xml

@@ -640,4 +640,7 @@
     <if test="type != null and (type == 4 or type == 5) and latitudeMin != 0 and latitudeMax != 0"> and sb.latitude > #{latitudeMin} AND sb.latitude <![CDATA[  < ]]> #{latitudeMax} </if>
     order by sb.update_date desc
     </select>
+  <select id="getPriceInfo" resultType="com.zoniot.ccrc.dto.PriceInfo">
+    select * from prict_info
+  </select>
 </mapper>

+ 22 - 0
src/main/resources/mapper/SiteMapper.xml

@@ -179,6 +179,25 @@
     <update id="delete">
         update sc_site set status = 0,update_date=NOW(),update_by=#{updateBy} where id = #{id}
     </update>
+    <update id="deleteCustomerRelations">
+        update sc_customer set site_id=null where id=#{id}
+    </update>
+    <update id="updateCustomerSiteId">
+        update sc_customer set site_id=#{id}
+        where id in ( SELECT  DATA.id FROM(
+                                              SELECT
+                                                  @ids as _ids,
+                                                  (   SELECT @ids := GROUP_CONCAT(id)
+                                                      FROM sc_customer
+                                                      WHERE FIND_IN_SET(parent_id, @ids)
+                                                  ) as cids,
+                                                  @l := @l+1 as level
+                                              FROM sc_customer,
+                                                   (SELECT @ids :=#{customerId}, @l := 0 ) b
+                                              WHERE @ids IS NOT NULL
+                                          ) id, sc_customer DATA
+                      WHERE FIND_IN_SET(DATA.id, ID._ids))
+    </update>
 
 
     <select id="findByNameUnique" resultType="int">
@@ -199,5 +218,8 @@
     <select id="getSiteCustomerIds" resultType="java.lang.Integer">
         select customer_id from sc_site where status = 1
     </select>
+    <select id="getCustomerList" resultType="com.zoniot.ccrc.entity.Customer">
+        select * from sc_customer where parent_id=0 and status=1
+    </select>
 </mapper>