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;
|
|
|
|
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;
|
}
|
|
}
|