admin
2019-01-16 e477968929ab57da9b1b3c309b487b4f9fd606ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yeshi.fanli.dao.mybatis.msg;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.bus.msg.UserSystemMsg;
 
public interface UserSystemMsgMapper extends BaseMapper<UserSystemMsg> {
    
    List<UserSystemMsg> listByUid(@Param("uid") Long uid, @Param("start") long start, @Param("count") int count);
 
    Long countByUid(@Param("uid") Long uid);
}