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