admin
2019-01-19 e1fcabf3946b7a5a6b76931657413a29735d0762
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
package com.yeshi.fanli.service.impl.msg;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.entity.bus.user.ThreeSale;
import com.yeshi.fanli.service.inter.msg.UserInviteMsgNotificationService;
 
@Service
public class UserInviteMsgNotificationServiceImpl  implements UserInviteMsgNotificationService{
 
    @Override
    public void inviteScan(Long uid, ThreeSale sale) {
        // TODO Auto-generated method stub
        
    }
 
    @Override
    public void inviteSuccess(Long uid, ThreeSale sale) {
        // TODO Auto-generated method stub
        
    }
 
    @Override
    public void inviteFail(Long uid, ThreeSale sale) {
        // TODO Auto-generated method stub
        
    }
 
}