/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: 34161541@qq.com * CreateTime: 2021-06-08 22:14:59 * Description: 暂无 ***********************************************************************/ using SqlSugar; using System.ComponentModel.DataAnnotations; namespace CoreCms.Net.Model.Entities { /// /// 定时任务日志 /// [SugarTable("SysTaskLog",TableDescription = "定时任务日志")] public partial class SysTaskLog { /// /// 定时任务日志 /// public SysTaskLog() { } /// /// 序列 /// [Display(Name = "序列")] [SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)] [Required(ErrorMessage = "请输入{0}")] public System.Int32 id { get; set; } /// /// 任务名称 /// [Display(Name = "任务名称")] [SugarColumn(ColumnDescription = "任务名称")] [Required(ErrorMessage = "请输入{0}")] [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")] public System.String name { get; set; } /// /// 完成时间 /// [Display(Name = "完成时间")] [SugarColumn(ColumnDescription = "完成时间")] [Required(ErrorMessage = "请输入{0}")] public System.DateTime createTime { get; set; } /// /// 是否完成 /// [Display(Name = "是否完成")] [SugarColumn(ColumnDescription = "是否完成")] [Required(ErrorMessage = "请输入{0}")] public System.Boolean isSuccess { get; set; } /// /// 其他数据 /// [Display(Name = "其他数据")] [SugarColumn(ColumnDescription = "其他数据", IsNullable = true)] public System.String parameters { get; set; } } }