yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.qianwen.smartman.modules.cps.mapper;
 
import java.util.List;
import java.util.Map;
import org.apache.ibatis.annotations.Param;
import com.qianwen.core.mp.mapper.BladeMapper;
import com.qianwen.smartman.modules.cps.entity.CommonGroup;
import com.qianwen.smartman.modules.cps.vo.CommonGroupVO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/mapper/CommonGroupMapper.class */
public interface CommonGroupMapper extends BladeMapper<CommonGroup> {
    List<CommonGroupVO> lazyList(@Param("tenantId") String tenantId, @Param("parentId") Long parentId, @Param("groupType") String groupType, @Param("groupCategory") Integer groupCategory, @Param("p") Map<String, Object> param);
 
    List<CommonGroupVO> tree(@Param("tenantId") String tenantId, @Param("groupType") String groupType, @Param("groupCategory") Integer groupCategory);
 
    List<CommonGroupVO> lazyTree(@Param("tenantId") String tenantId, @Param("parentId") Long parentId);
 
    List<String> getGroupNames(Long[] ids);
 
    List<CommonGroup> getAllSubGroup(@Param("id") Long id, String groupType, Integer groupCategory);
 
    void removeOrg();
 
    void removeOrgContact();
 
    void removeOrgByIds(@Param("deptIds") List<String> deptIds);
}