admin
2022-04-26 36681e15e12aaa9135f69260472de65303cdcba3
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
29
30
31
package com.yeshi.makemoney.app.dao.user;
 
import com.yeshi.makemoney.app.entity.SystemEnum;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Date;
 
import org.apache.ibatis.annotations.Param;
 
import org.yeshi.utils.mybatis.BaseMapper;
import com.yeshi.makemoney.app.entity.user.WXUserInfo;
 
@Repository
public interface WXUserInfoMapper extends BaseMapper<WXUserInfo> {
 
    WXUserInfo selectByPrimaryKeyForUpdate(@Param("id") java.lang.Long id);
 
    List<WXUserInfo> list(@Param("query") DaoQuery query);
 
    long count(@Param("query") DaoQuery query);
 
    public static class DaoQuery {
        public SystemEnum system;
        public String unionId;
        public long start;
        public int count;
        public List<String> sortList;
    }
 
}