fix
Helius
2021-12-08 aefcec640848fb6f1bc847f4d5c9074ee7c5c95b
1
2
3
4
5
6
7
8
9
10
package com.xzx.gc.order.mapper;
 
import com.xzx.gc.entity.UserHeadRelate;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
 
public interface UserHeadRelateMapper extends GcMapper<UserHeadRelate> {
 
    UserHeadRelate selectRelateByUserId(@Param("userId") String userId);
}