| | |
| | | package com.moral.api.mapper; |
| | | |
| | | import java.util.Map; |
| | | |
| | | import com.moral.api.entity.Organization; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * </p> |
| | | * |
| | | * @author moral |
| | | * @since 2021-03-09 |
| | | * @since 2021-04-06 |
| | | */ |
| | | public interface OrganizationMapper extends BaseMapper<Organization> { |
| | | |
| | | Map<String, Object> selectOrganizationById(int id); |
| | | List<Integer> orgIdList(@Param("organizationId") Integer organizationId); |
| | | |
| | | List<Integer> orgIdSpecialDevList(@Param("organizationId") Integer organizationId,@Param("mac") String mac); |
| | | } |