/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。 * Ghre_ExamMessageLog.cs * *功 能: N / A * 类 名: Ghre_ExamMessageLog * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── *V0.01 2024/6/4 14:16:13 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ *└──────────────────────────────────┘ */ using System.ComponentModel; using System.ComponentModel.DataAnnotations; using SqlSugar; namespace Tiobon.Core.Model.Models { /// /// 考试通知记录 (Model) /// [SugarTable("Ghre_ExamMessageLog", "Ghre_ExamMessageLog"), Entity(TableCnName = "考试通知记录", TableName = "Ghre_ExamMessageLog")] public class Ghre_ExamMessageLog : BasePoco { /// /// 试卷ID /// public long? ExamId { get; set; } /// /// 发送类型 /// [Display(Name = "SendType"), Description("发送类型"), MaxLength(256, ErrorMessage = "发送类型 不能超过 256 个字符")] public string SendType { get; set; } /// /// 通知设置 /// [Display(Name = "MsgSet"), Description("通知设置"), MaxLength(32, ErrorMessage = "通知设置 不能超过 32 个字符")] public string MsgSet { get; set; } /// /// 通知范围 /// [Display(Name = "NotificationScop"), Description("通知范围"), MaxLength(32, ErrorMessage = "通知范围 不能超过 32 个字符")] public string NotificationScop { get; set; } /// /// 备注 /// [Display(Name = "RemarkSz"), Description("备注"), MaxLength(2000, ErrorMessage = "备注 不能超过 2000 个字符")] public string RemarkSz { get; set; } /// /// 默认标志 /// public int? IsDefault { get; set; } /// /// 预留字段1 /// [Display(Name = "Reverse1"), Description("预留字段1"), MaxLength(1000, ErrorMessage = "预留字段1 不能超过 1000 个字符")] public string Reverse1 { get; set; } /// /// 预留字段2 /// [Display(Name = "Reverse2"), Description("预留字段2"), MaxLength(1000, ErrorMessage = "预留字段2 不能超过 1000 个字符")] public string Reverse2 { get; set; } /// /// 预留字段3 /// [Display(Name = "Reverse3"), Description("预留字段3"), MaxLength(1000, ErrorMessage = "预留字段3 不能超过 1000 个字符")] public string Reverse3 { get; set; } /// /// 预留字段4 /// [Display(Name = "Reverse4"), Description("预留字段4"), MaxLength(1000, ErrorMessage = "预留字段4 不能超过 1000 个字符")] public string Reverse4 { get; set; } /// /// 预留字段5 /// [Display(Name = "Reverse5"), Description("预留字段5"), MaxLength(1000, ErrorMessage = "预留字段5 不能超过 1000 个字符")] public string Reverse5 { get; set; } /// /// 预留字段6 /// [Display(Name = "Reverse6"), Description("预留字段6"), MaxLength(1000, ErrorMessage = "预留字段6 不能超过 1000 个字符")] public string Reverse6 { get; set; } /// /// 预留字段7 /// [Display(Name = "Reverse7"), Description("预留字段7"), MaxLength(1000, ErrorMessage = "预留字段7 不能超过 1000 个字符")] public string Reverse7 { get; set; } /// /// 预留字段8 /// [Display(Name = "Reverse8"), Description("预留字段8"), MaxLength(1000, ErrorMessage = "预留字段8 不能超过 1000 个字符")] public string Reverse8 { get; set; } /// /// 预留字段9 /// [Display(Name = "Reverse9"), Description("预留字段9"), MaxLength(1000, ErrorMessage = "预留字段9 不能超过 1000 个字符")] public string Reverse9 { get; set; } /// /// 预留字段10 /// [Display(Name = "Reverse10"), Description("预留字段10"), MaxLength(1000, ErrorMessage = "预留字段10 不能超过 1000 个字符")] public string Reverse10 { get; set; } /// /// 预留字段11 /// public int? ReverseI1 { get; set; } /// /// 预留字段12 /// public int? ReverseI2 { get; set; } } }