package com.xzx.gc.user.mapper; import com.xzx.gc.entity.Fence; import com.xzx.gc.model.admin.XzxCityPartnerModel; import com.xzx.gc.model.admin.XzxElectronicFenceModel; import com.xzx.gc.util.GcMapper; import java.util.List; public interface FenceMapper extends GcMapper { List findByPartnerId(String partnerId); int queryElectronicFenceByPartner(String partnerId); List queryFenceNameList(XzxCityPartnerModel model); List queryPartnerFenceList(XzxCityPartnerModel model); List queryPartnerFenceListByUser(XzxCityPartnerModel model); }