using FreeSql.DataAnnotations; namespace CapMachine.Model.CANLIN { /// /// LIN配置拓展数据 /// [Table(Name = "LINConfigExd")] public class LINConfigExd { /// /// 主键 /// [Column(IsPrimary = true, IsIdentity = true)] public long Id { get; set; } /// /// 波特率 /// [Column(Name = "BaudRate")] public int BaudRate { get; set; } /// /// 周期 /// [Column(Name = "Cycle")] public int Cycle { get; set; } /// /// Ldf 文件路径 /// [Column(Name = "LdfPath", IsNullable = false, StringLength = 500)] public string? LdfPath { get; set; } /// /// 调度表是否启用 /// [Column(Name = "SchEnable")] public bool SchEnable { get; set; } } }