| | |
| | | package com.moral.mapper;
|
| | |
|
| | | import org.apache.ibatis.annotations.Mapper;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | |
|
| | | import com.moral.common.mapper.BaseMapper;
|
| | | import com.moral.entity.Organization;
|
| | | import com.moral.entity.OrganizationExample;
|
| | |
|
| | | @Mapper
|
| | | public interface OrganizationMapper extends BaseMapper<Organization, OrganizationExample, Integer> {
|
| | | public interface OrganizationMapper extends BaseMapper<Organization> {
|
| | |
|
| | | List<Organization> getOrganizationsByAreaName(Map<String, Object> parameters);
|
| | | } |