喻健
2018-11-08 a94b7685716096afb867716c96065a60db7b9564
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.yeshi.fanli.service.inter.user;
 
import java.math.BigDecimal;
import java.util.List;
 
import com.yeshi.fanli.entity.bus.user.HongBaoMessage;
import com.yeshi.fanli.entity.bus.user.ShamUser;
 
/**
 * 假用户服务
 * 
 * @author Administrator
 *
 */
public interface ShamUserService {
 
    public void addShamUser(ShamUser shamUser);
 
    public List<ShamUser> getAll();
 
    public List<HongBaoMessage> getManyData();
 
    public void delete(long id);
 
    public List<HongBaoMessage> findShamThreeSaleInfo();
 
    public List<ShamUser> findShamUserList(int sum);
    
    
    public int deleteByPrimaryKey(Long id);
 
    public int insert(ShamUser record);
 
    public int insertSelective(ShamUser record);
 
    public ShamUser selectByPrimaryKey(Long id);
 
    public int updateByPrimaryKeySelective(ShamUser record);
 
    public int updateByPrimaryKey(ShamUser record);
 
    public List<ShamUser> listDistinctPicUrl(long start, int count);
 
    /**
     * 领券提示
     * @param count
     * @param smallTime
     * @param largeTime
     * @return
     */
    public List<ShamUser> listRandCouponUser(int count, int smallTime, int largeTime);
 
    /**
     * 分享奖金
     * @param count
     * 
     * @param shareMoney
     * @param small
     * @param large
     * @return
     */
    public List<ShamUser> listRandShareUser(int count, BigDecimal shareMoney, int small, int large);
}