CAN 配置和报文记录的功能
This commit is contained in:
40
CapMachine.Model/HighMsgFileInfo.cs
Normal file
40
CapMachine.Model/HighMsgFileInfo.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user