/***********************************************************************
* Project: CoreCms
* ProjectName: 百分兵法管理系统
* Web: hhtp://chuanyin.com
* Author:
* Email:
* CreateTime: 2022/3/3 1:03:58
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
///
/// 连续签到规则
///
public partial class CoreCmsContinuousCheckInRules
{
///
/// 构造函数
///
public CoreCmsContinuousCheckInRules()
{
}
///
/// 序列
///
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
///
/// 天数
///
[Display(Name = "天数")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 days { get; set; }
}
}