namespace yunneiWCS.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class v_srmStockdetails { [Key] [DatabaseGenerated(DatabaseGeneratedOption.None)] public long stockListId { get; set; } [StringLength(50)] public string productName { get; set; } [StringLength(50)] public string serialNumber { get; set; } public long? stockId { get; set; } [StringLength(10)] public string positionName { get; set; } public bool? isLock { get; set; } public bool? isfree { get; set; } [StringLength(50)] public string materialCode { get; set; } [StringLength(50)] public string materialName { get; set; } public int? quantity { get; set; } public int? taskType { get; set; } public int? status { get; set; } public DateTime? createTime { get; set; } public DateTime? updateTime { get; set; } public bool? enable { get; set; } public long? positionId { get; set; } public long? materialId { get; set; } [StringLength(50)] public string productCode { get; set; } [StringLength(50)] public string containerCode { get; set; } public byte? positionType { get; set; } [StringLength(50)] public string supplier { get; set; } [StringLength(50)] public string version { get; set; } } }