Helius
2021-06-28 cedf9aab0ee975b04c52c0a75749e1eba852db2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.xzx.gc.order.mapper;
 
import com.xzx.gc.entity.UserInfo;
import com.xzx.gc.model.admin.UserModel;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Repository
public interface UserMapper extends GcMapper<UserInfo> {
 
    List<UserInfo> findHaveAddr();
 
 
    void updatePartnerId(@Param("userId") String userId, @Param("partnerId") String partnerId);
 
 
    List<UserModel> queryUserByUsertypeList(@Param("phone") String phone, @Param("userType") String userType, @Param("delFlag") String delFlag,  @Param("normal") String normal, @Param("nickName") String nickName);
 
    UserModel queryUserByUsertype(@Param("phone") String phone, @Param("userType") String userType, @Param("delFlag") String delFlag, @Param("normal") String normal, @Param("nickName") String nickName);
 
    int updateUserInfo(UserModel model);
 
    int insertUserInfo(UserModel model);
 
}