| | |
| | | |
| | | import com.moral.api.entity.Organization; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @Date: 2021/7/1 |
| | | */ |
| | | List<Organization> getChildrenOrganizationsById(Integer id); |
| | | |
| | | /** |
| | | * @Description: 根据id获取组织 |
| | | * @Param: [id] |
| | | * @return: com.moral.api.entity.Organization |
| | | * @Author: 陈凯裕 |
| | | * @Date: 2021/9/26 |
| | | */ |
| | | Organization getOrganizationById(Integer id); |
| | | |
| | | |
| | | /** |
| | | * 查询关联组织信息 |
| | | * @param organizationId |
| | | * @return |
| | | */ |
| | | List<Integer> orgIdList( Integer organizationId); |
| | | |
| | | } |