lxw
2022-06-10 6e530f342f7ed9fabdf17c277227bebbd4d37edd
1
2
3
4
5
6
7
8
9
10
package com.whyc.mapper;
 
import com.whyc.pojo.PositionMapUser;
 
import java.util.List;
 
public interface PositionMapUserMapper extends CustomMapper<PositionMapUser> {
    
    List<PositionMapUser> getListByUserId(int userId);
}