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<IdNameEntity> selectUserFuzzy(String name);
|
|
public List<IdNameEntity> selectDepFuzzy(String name);
|
|
public Integer selectTabsForCount(String tab, String typesFilter, String field);
|
|
public List<TabEntity> selectTabsByPage(String tab, String typesFilter, String field, String filters, Integer limit, Integer offset);
|
|
public List<DictEntity> selectFields(String ns, String tab);
|
|
public List<DomainEntity> selectDomains(String ns, String tab);
|
|
public String selectRoute(double x1, double y1, double x2, double y2);
|
|
public List<KeyValueEntity> selectLocation(String wkt);
|
|
public List<KeyValueEntity> selectDirTypes(String name);
|
|
public List<AttachEntity> selectAnnexByTab(String tab, String gids);
|
}
|