xiaoyong931011
2021-11-19 ca390645fe6ffd99bbe2056fad48c09842022722
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.xzx.gc.order.mapper;
 
import com.xzx.gc.entity.Fence;
import com.xzx.gc.entity.XzxElectronicFence;
import com.xzx.gc.model.admin.XzxCityPartnerModel;
import com.xzx.gc.model.admin.XzxElectronicFenceModel;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface FenceMapper extends GcMapper<Fence> {
    List<Fence> findByUserId(String userId);
 
    List<Fence> findByPartnerId(String partnerId);
 
    XzxElectronicFence queryElectronic(XzxElectronicFenceModel info);
 
    List<XzxElectronicFenceModel> queryFenceList(XzxElectronicFenceModel model);
 
    int queryPartnerAreaIds(@Param("partnerId") String partnerId, @Param("townId") String townId);
 
    String queryAreaTownId(String keyword);
 
    List<String> queryTownListByArea(@Param("townCode") String townCode, @Param("eleId") String eleId);
 
    List<String> queryODByArea(String townCode);
 
    List<String> queryOrderTownListByArea(@Param("townCode") String townCode, @Param("eleId") String eleId);
 
 
 
    String queryPartnerIdByTownId(String townId);
 
    List<XzxElectronicFenceModel> queryPartnerFenceList(XzxCityPartnerModel model);
 
    List<XzxElectronicFenceModel> queryPartnerFenceListByUser(XzxCityPartnerModel model);
 
 
 
 
 
}