admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.yeshi.fanli.vo.user;
 
import java.io.Serializable;
 
public class UserSettingsVO implements Serializable{
 
    private static final long serialVersionUID = 1L;
    
    // 通知免打扰(20:00-8:00)
    private Integer cancelNotice;
    // 不看消息红点提醒
    private Integer noNewsRedDot;
    // 不看奖金统计
    private Integer noBonusCount;
    // 不看分享记录和选品库
    private Integer noShareRecordAndStorage;
    // 不看邀请拿奖金
    private Integer noInvitationBonus;
    // 开启推广红包
    private Integer openSpreadHongBao;
    // 允许查看手机
    private Integer noDisplayPhoneNum;
    
    
 
    public Integer getCancelNotice() {
        return cancelNotice;
    }
 
    public void setCancelNotice(Integer cancelNotice) {
        this.cancelNotice = cancelNotice;
    }
 
    public Integer getNoNewsRedDot() {
        return noNewsRedDot;
    }
 
    public void setNoNewsRedDot(Integer noNewsRedDot) {
        this.noNewsRedDot = noNewsRedDot;
    }
 
    public Integer getNoBonusCount() {
        return noBonusCount;
    }
 
    public void setNoBonusCount(Integer noBonusCount) {
        this.noBonusCount = noBonusCount;
    }
 
    public Integer getNoShareRecordAndStorage() {
        return noShareRecordAndStorage;
    }
 
    public void setNoShareRecordAndStorage(Integer noShareRecordAndStorage) {
        this.noShareRecordAndStorage = noShareRecordAndStorage;
    }
 
    public Integer getNoInvitationBonus() {
        return noInvitationBonus;
    }
 
    public void setNoInvitationBonus(Integer noInvitationBonus) {
        this.noInvitationBonus = noInvitationBonus;
    }
 
    public Integer getOpenSpreadHongBao() {
        return openSpreadHongBao;
    }
 
    public void setOpenSpreadHongBao(Integer openSpreadHongBao) {
        this.openSpreadHongBao = openSpreadHongBao;
    }
 
 
    public Integer getNoDisplayPhoneNum() {
        return noDisplayPhoneNum;
    }
 
    public void setNoDisplayPhoneNum(Integer noDisplayPhoneNum) {
        this.noDisplayPhoneNum = noDisplayPhoneNum;
    }
 
}