/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * 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; } } }