using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CapMachine.Model.CANLIN { /// /// CAN和LIN的配置数据内容 /// [Table(Name = "CanLinConfigContent")] public class CanLinRWConfig { /// /// 主键 /// [Column(IsPrimary = true, IsIdentity = true)] public long Id { get; set; } /// /// 输入输出信息 读取/写入/系统 /// [Column(Name = "RWInfo", IsNullable = false, MapType = typeof(string))] public RW RWInfo { get; set; } /// /// 配置项名称-比如转速、功率限制等 /// [Column(Name = "Name", IsNullable = false, StringLength = 50)] public string? Name { get; set; } /// /// 配置项值 /// [Column(Name = "Content", IsNullable = false, StringLength = 100)] public string? Content { get; set; } /// /// 配置项默认值和数据 /// [Column(Name = "DefautValue", IsNullable = true, StringLength = 50)] public string? DefautValue { get; set; } /// /// ///////////////////////////////////////////导航属性/////////////////////////////////////////////////////// /// public long CanLinConfigProId { get; set; } public CanLinConfigPro? CanLinConfigPro { get; set; } } }