Helius
2022-02-28 25fb65540710ad0c90cbb0333cacbddef11b3f2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.xzx.gc.user.mapper;
 
import com.xzx.gc.entity.UserShareInfo;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Repository
public interface UserShareInfoMapper extends GcMapper<UserShareInfo> {
 
    UserShareInfo selectByRegistPhone(@Param("registPhone") String registPhone);
 
    List<UserShareInfo> selectByPhone(@Param("phone") String phone);
}