📄 userindividuation.cs
字号:
}
set
{
this.ChkEnablePm.Checked = value;
}
}
public int GetExp
{
get
{
return DataConverter.CLng(this.TxtGetExp.Text);
}
set
{
this.TxtGetExp.Text = value.ToString();
}
}
public bool ManageSelfPublicInfo
{
get
{
return this.ChkManageSelfPublicInfo.Checked;
}
set
{
this.ChkManageSelfPublicInfo.Checked = value;
}
}
public int MaxPublicInfoOneDay
{
get
{
return DataConverter.CLng(this.TxtMaxPublicInfoOneDay.Text);
}
set
{
this.TxtMaxPublicInfoOneDay.Text = value.ToString();
}
}
public int MaxSaveInfos
{
get
{
return DataConverter.CLng(this.TxtMaxSaveInfos.Text);
}
set
{
this.TxtMaxSaveInfos.Text = value.ToString();
}
}
public int MaxSendToUsers
{
get
{
return DataConverter.CLng(this.TxtMaxSendToUsers.Text);
}
set
{
this.TxtMaxSendToUsers.Text = value.ToString();
}
}
public bool MinusPoint
{
get
{
return this.RadMinusPoint.Checked;
}
set
{
this.RadMinusPoint.Checked = value;
}
}
public bool NotMinusPointNotWriteToLog
{
get
{
return this.RadNotMinusPointNotWriteToLog.Checked;
}
set
{
this.RadNotMinusPointNotWriteToLog.Checked = value;
}
}
public int Overdraft
{
get
{
return DataConverter.CLng(this.TxtOverdraft.Text);
}
set
{
this.TxtOverdraft.Text = value.ToString();
}
}
public bool PublicInfoNoNeedCheck
{
get
{
return this.ChkPublicInfoNoNeedCheck.Checked;
}
set
{
this.ChkPublicInfoNoNeedCheck.Checked = value;
}
}
public UserPurviewInfo PurviewInfo
{
get
{
UserPurviewInfo info = new UserPurviewInfo();
info.PublicInfoNoNeedCheck = this.PublicInfoNoNeedCheck;
info.ManageSelfPublicInfo = this.ManageSelfPublicInfo;
info.SetToNotCheck = this.SetToNotCheck;
info.SetEditor = this.SetEditor;
info.MaxPublicInfoOneDay = this.MaxPublicInfoOneDay;
info.GetExp = this.GetExp;
info.EnableComment = this.EnableComment;
info.CommentNeedCheck = this.CommentNeedCheck;
info.MaxSendToUsers = this.MaxSendToUsers;
info.MaxSaveInfos = this.MaxSaveInfos;
info.SetEnableSale = this.SetEnableSale;
info.Discount = this.Discount;
info.Overdraft = this.Overdraft;
info.Enablepm = this.Enablepm;
info.ChargeByPoint = this.ChargeByPoint;
info.ChargeByValidDate = this.ChargeByValidDate;
info.ChargeByPointOrValidDate = this.ChargeByPointOrValidDate;
info.ChargeByPointAndValidDate = this.ChargeByPointAndValidDate;
info.NotMinusPointNotWriteToLog = this.NotMinusPointNotWriteToLog;
info.WriteToLog = this.WriteToLog;
info.MinusPoint = this.MinusPoint;
info.TotalViewInfoNumber = this.TotalViewInfoNumber;
info.ViewInfoNumberOneDay = this.ViewInfoNumberOneDay;
info.EnableExchangePoint = this.EnableExchangePoint;
info.EnableExchangeValidDate = this.EnableExchangeValidDate;
info.EnableGivePointToOthers = this.EnableGivePointToOthers;
return info;
}
set
{
this.PublicInfoNoNeedCheck = value.PublicInfoNoNeedCheck;
this.ManageSelfPublicInfo = value.ManageSelfPublicInfo;
this.SetToNotCheck = value.SetToNotCheck;
this.SetEditor = value.SetEditor;
this.MaxPublicInfoOneDay = value.MaxPublicInfoOneDay;
this.GetExp = value.GetExp;
this.EnableComment = value.EnableComment;
this.CommentNeedCheck = value.CommentNeedCheck;
this.MaxSendToUsers = value.MaxSendToUsers;
this.MaxSaveInfos = value.MaxSaveInfos;
this.Discount = value.Discount;
this.SetEnableSale = value.SetEnableSale;
this.Overdraft = value.Overdraft;
this.Enablepm = value.Enablepm;
this.ChargeByPoint = value.ChargeByPoint;
this.ChargeByValidDate = value.ChargeByValidDate;
this.ChargeByPointOrValidDate = value.ChargeByPointOrValidDate;
this.ChargeByPointAndValidDate = value.ChargeByPointAndValidDate;
this.NotMinusPointNotWriteToLog = value.NotMinusPointNotWriteToLog;
this.WriteToLog = value.WriteToLog;
this.MinusPoint = value.MinusPoint;
this.TotalViewInfoNumber = value.TotalViewInfoNumber;
this.ViewInfoNumberOneDay = value.ViewInfoNumberOneDay;
this.EnableExchangePoint = value.EnableExchangePoint;
this.EnableExchangeValidDate = value.EnableExchangeValidDate;
this.EnableGivePointToOthers = value.EnableGivePointToOthers;
}
}
public bool SetEditor
{
get
{
return this.ChkSetEditor.Checked;
}
set
{
this.ChkSetEditor.Checked = value;
}
}
public bool SetEnableSale
{
get
{
return this.ChkSetEnableSale.Checked;
}
set
{
this.ChkSetEnableSale.Checked = value;
}
}
public bool SetToNotCheck
{
get
{
return this.ChkSetToNotCheck.Checked;
}
set
{
this.ChkSetToNotCheck.Checked = value;
}
}
public int TotalViewInfoNumber
{
get
{
return DataConverter.CLng(this.TxtTotalViewInfoNumber.Text);
}
set
{
this.TxtTotalViewInfoNumber.Text = value.ToString();
}
}
public int ViewInfoNumberOneDay
{
get
{
return DataConverter.CLng(this.TxtViewInfoNumberOneDay.Text);
}
set
{
this.TxtViewInfoNumberOneDay.Text = value.ToString();
}
}
public bool WriteToLog
{
get
{
return this.RadWriteToLog.Checked;
}
set
{
this.RadWriteToLog.Checked = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -