using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; namespace DynStatDisk.App.Model { /// /// 动静盘模型信息 /// [Table(Name = "dbo.DynStatDiskModel")] public class DynStatDiskModel { /// /// 主键 /// [Column(IsPrimary = true,IsIdentity =true)] public long Id { get; set; } /// /// 机种番号 /// [Column(Name = "ModelNo", IsNullable = false, StringLength = 20)] public string ModelNo { get; set; } /// /// 间隙检测 /// [Column(Name = "GapInfo", IsNullable = false, StringLength = 10)] public string GapInfo { get; set; } /// /// DynStatDiskKeyMatch 绑定首字符 /// [Column(Name = "DynStatDiskKeyMatch", IsNullable = true, StringLength = 10)] public string DynStatDiskKeyMatch { get; set; } /// /// 动静盘支架匹配 /// [Column(Name = "DyDiskBrackMatch", IsNullable = false, StringLength = 10)] public string DyDiskBrackMatch { get; set; } ///// ///// 电器盒盖 ///// //[Column(Name = "DynStatDiskConver", IsNullable = false, StringLength = 10)] //public string DynStatDiskConver { get; set; } ///// ///// ESOPPath 照片路径 ///// //[Column(Name = "ESOPPath", IsNullable = false, StringLength = 400)] //public string ESOPPath { get; set; } /// /// 创建时间 /// [Column(ServerTime = DateTimeKind.Local, CanUpdate = false)] public DateTime CreateTime { get; set; } } }