using FreeSql.DataAnnotations; namespace CapMachine.Model { /// /// 高速的消息文件信息 /// [Table(Name = "HighMsgFileInfo")] public class HighMsgFileInfo { /// /// 主键 /// [Column(IsPrimary = true, IsIdentity = true)] public long Id { get; set; } /// /// 试验名称 /// [Column(Name = "Name", IsNullable = false, StringLength = 200)] public string? ExpName { get; set; } /// /// Path /// CSV文件路径 /// [Column(Name = "FilePath", IsNullable = false, StringLength = 400)] public string? FilePath { get; set; } /// /// FileInfo /// 2024-12-23 17 /// [Column(Name = "FileInfo", IsNullable = false, StringLength = 30)] public string? FileInfo { get; set; } [Column(ServerTime = DateTimeKind.Local, CanUpdate = false)] public DateTime CreateTime { get; set; } } }