package com.moral.mapper; import java.util.List; import java.util.Map; import com.moral.common.mapper.BaseMapper; import com.moral.entity.MonitorPoint; import tk.mybatis.mapper.entity.Example; public interface MonitorPointMapper extends BaseMapper{ List selectWithAreaNameByExample(Example example); List getMonitorPointsByAreaName(Map parameters); List selectByMap(Map params); List selectOrganizationIds(int id); List selectVersionsById(int id); }