/***********************************************************************
|
* Project: baifenBinfa
|
* ProjectName: 百分兵法管理系统
|
* Web: http://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
|
{
|
/// <summary>
|
/// 连续签到规则
|
/// </summary>
|
public partial class CoreCmsContinuousCheckInRules
|
{
|
/// <summary>
|
/// 构造函数
|
/// </summary>
|
public CoreCmsContinuousCheckInRules()
|
{
|
}
|
|
/// <summary>
|
/// 序列
|
/// </summary>
|
[Display(Name = "序列")]
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
[Required(ErrorMessage = "请输入{0}")]
|
|
|
|
public System.Int32 id { get; set; }
|
|
|
/// <summary>
|
/// 天数
|
/// </summary>
|
[Display(Name = "天数")]
|
|
[Required(ErrorMessage = "请输入{0}")]
|
|
|
|
public System.Int32 days { get; set; }
|
|
|
}
|
}
|