26 lines
645 B
26 lines
645 B
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace Znyc.CloudCar.Model.Entities
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 用户签到奖励配置表
|
||
|
/// </summary>
|
||
|
[Table(Name = "rm_sign_config")]
|
||
|
public class SignConfigEntity : EntityBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 签到天数
|
||
|
/// </summary>
|
||
|
public int SignDay { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 奖励类型(1=积分/2=礼品/3/4/5=后续天降)
|
||
|
/// </summary>
|
||
|
public int RewardType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 奖励云币
|
||
|
/// </summary>
|
||
|
public decimal SignReward { get; set; }
|
||
|
}
|
||
|
}
|