You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
645 B
26 lines
645 B
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; }
|
|
}
|
|
}
|