liyanqi
2022-09-09 d729d924aff31c769b90adc99d998d38cdf50ec0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ycl.mapper.user;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.entity.user.UmsAdminDepart;
import org.apache.ibatis.annotations.Param;
import org.springframework.security.core.parameters.P;
 
import java.util.List;
 
 
/**
 * <p>
 * Mapper 接口
 * </p>
 *
 * @author lyq
 * @since 2022-09-09
 */
public interface UmsAdminDepartMapper extends BaseMapper<UmsAdminDepart> {
 
    void deletedByDepartId(@Param("departId") long departId);
 
    List<UmsAdminDepart> selectPageByUserId(@Param("userId") long userId, @Param("current") int current, @Param("pageSize") int pageSize);
}