namespace yunneiPda.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("position")] public partial class position { public long positionId { get; set; } [StringLength(10)] public string positionName { get; set; } public byte? row { get; set; } public byte? col { get; set; } public byte? layer { get; set; } public bool? isLock { get; set; } public bool? isfree { get; set; } public byte? positionType { get; set; } public bool? enable { get; set; } public int? quantity { get; set; } [StringLength(1000)] public string remark { get; set; } [StringLength(50)] public string lastModifier { get; set; } public DateTime? LastModifyTime { get; set; } } }