Helius
2021-07-14 290ae8b3a86a4fb00cc6c45744c76065593d276d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.xzx.gc.user.mapper;
 
import com.xzx.gc.entity.UserHeadDetails;
import com.xzx.gc.user.dto.HeadProfitLitDto;
import com.xzx.gc.user.vo.HeadProfitListVo;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface UserHeadDetailsMapper extends GcMapper<UserHeadDetails> {
 
    List<HeadProfitListVo> selectHeadProfitListInPage(@Param("userId") String userId);
}