/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 2022/3/9 0:59:03 * Description: 暂无 ***********************************************************************/ using SqlSugar; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace CoreCms.Net.Model.Entities { /// /// 用户签到明细表 /// public partial class CoreCmsUserCheckInDetails { /// /// 构造函数 /// public CoreCmsUserCheckInDetails() { } /// /// 序列 /// [Display(Name = "序列")] [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] [Required(ErrorMessage = "请输入{0}")] public System.Int32 id { get; set; } /// /// 用户序列 /// [Display(Name = "用户序列")] [Required(ErrorMessage = "请输入{0}")] public System.Int32 userId { get; set; } /// /// 打卡日期 /// [Display(Name = "打卡日期")] [Required(ErrorMessage = "请输入{0}")] public System.DateTime checkInData { get; set; } /// /// 打卡时间 /// [Display(Name = "打卡时间")] [Required(ErrorMessage = "请输入{0}")] public System.DateTime createTime { get; set; } } }