namespace yunneiWCS { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; public partial class MyVproductStock { public string positionName { get; set; } public bool? isLock { get; set; } public bool? isfree { get; set; } public string materialCode { get; set; } 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; } public string productCode { get; set; } public string containerCode { get; set; } public byte? positionType { get; set; } public string supplier { get; set; } public string version { get; set; } } }