package com.moon.server.mapper.all; import com.moon.server.entity.ctrl.IdNameEntity; import com.moon.server.entity.ctrl.KeyValueEntity; import com.moon.server.entity.ctrl.TabEntity; import com.moon.server.entity.data.DictEntity; import com.moon.server.entity.data.DomainEntity; import com.moon.server.entity.sys.AttachEntity; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; import java.util.List; @SuppressWarnings("ALL") @Mapper @Repository public interface BaseQueryMapper { public List selectUserFuzzy(String name); public List selectDepFuzzy(String name); public Integer selectTabsForCount(String tab, String typesFilter, String field); public List selectTabsByPage(String tab, String typesFilter, String field, String filters, Integer limit, Integer offset); public List selectFields(String ns, String tab); public List selectDomains(String ns, String tab); public String selectRoute(double x1, double y1, double x2, double y2); public List selectLocation(String wkt); public List selectDirTypes(String name); public List selectAnnexByTab(String tab, String gids); }