2026-06-01 17:59:23 +08:00
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace QYZH.InteractiveMagazine.Models.Entity
|
|
|
|
|
{
|
|
|
|
|
///<summary>
|
|
|
|
|
///签到配置表
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("CheckInConfig")]
|
2026-06-02 14:10:43 +08:00
|
|
|
public partial class CheckInConfig : SqlSugarBaseEntity
|
2026-06-01 17:59:23 +08:00
|
|
|
{
|
|
|
|
|
public CheckInConfig(){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2026-06-02 14:10:43 +08:00
|
|
|
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:连续签到天数
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int DayNumber {get;set;}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:奖励积分数
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int RewardPoints {get;set;}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:额外奖励积分
|
|
|
|
|
/// Default:0
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int BonusPoints {get;set;}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:配置类型: Daily, Streak
|
|
|
|
|
/// Default:Daily
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Type {get;set;}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:状态: Active, Inactive
|
|
|
|
|
/// Default:Active
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Status {get;set;}
|
|
|
|
|
}
|
|
|
|
|
}
|