36 lines
850 B
C#
36 lines
850 B
C#
using FreeSql.DataAnnotations;
|
|
|
|
namespace CapMachine.Model.CANLIN
|
|
{
|
|
/// <summary>
|
|
/// LIN配置拓展数据
|
|
/// </summary>
|
|
[Table(Name = "LINConfigExd")]
|
|
public class LINConfigExd
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Column(IsPrimary = true, IsIdentity = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 波特率
|
|
/// </summary>
|
|
[Column(Name = "BaudRate")]
|
|
public int BaudRate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 周期
|
|
/// </summary>
|
|
[Column(Name = "Cycle")]
|
|
public int Cycle { get; set; }
|
|
|
|
/// <summary>
|
|
/// Ldf 文件路径
|
|
/// </summary>
|
|
[Column(Name = "LdfPath", IsNullable = false, StringLength = 500)]
|
|
public string? LdfPath { get; set; }
|
|
}
|
|
}
|