admin
2019-01-16 e477968929ab57da9b1b3c309b487b4f9fd606ef
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
32
33
package com.yeshi.fanli.service.inter.msg;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.msg.MsgInviteDetail;
import com.yeshi.fanli.exception.msg.MsgInviteDetailException;
 
public interface MsgInviteDetailService {
    /**
     * 添加到邀请消息
     * 
     * @param detail
     * @throws MsgInviteDetailException
     */
    public void addMsgInviteDetail(MsgInviteDetail detail) throws MsgInviteDetailException;
 
    /**
     * 账户消息列表
     * 
     * @param uid
     * @param page
     * @return
     */
    public List<MsgInviteDetail> listMsgInviteDetail(Long uid, int page);
 
    /**
     * 账户消息数
     * 
     * @param uid
     * @return
     */
    public long countMsgInviteDetail(Long uid);
}