Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ibeetl.admin.console.dao;
 
import com.ibeetl.admin.console.model.XzxElectronicFenceModel;
import com.ibeetl.admin.core.entity.XzxElectronicFence;
import org.beetl.sql.core.annotatoin.SqlResource;
import org.beetl.sql.core.engine.PageQuery;
import org.beetl.sql.core.mapper.BaseMapper;
 
import java.util.List;
 
/**
 * XzxElectronicFence Dao
 */
@SqlResource("console.xzxElectronicFence")
public interface XzxElectronicFenceDao extends BaseMapper<XzxElectronicFence>{
    public PageQuery<XzxElectronicFence> queryByCondition(PageQuery query);
    public void batchDelXzxElectronicFenceByIds(List<Long> ids);
    public XzxElectronicFence queryElectronic(XzxElectronicFenceModel info);
    List<XzxElectronicFenceModel> queryFenceList(XzxElectronicFenceModel model);
    int queryPartnerAreaIds(String partnerId,String townId);
    String queryAreaTownId(String keyword);
    List<String> queryTownListByArea(String townCode,String eleId);
    List<String>  queryODByArea(String townCode);
}