using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareSql { public class BatchOrderUPIView { public string PlanNo { get; set; } public string OrderId { get; set; } public string UPI { get; set; } public string DetailName { get; set; } public float Length { get; set; } public float Width { get; set; } public float Thk { get; set; } public string Matgrid { get; set; } public string IsEB { get; set; } public string DRNum { get; set; } public string IsPA { get; set; } public int? MaterialIndeX { get; set; } public string PackageCode { get; set; } public string XYZ { get; set; } public float? Rotation { get; set; } public int? Sequence { get; set; } public int? Shelf { get; set; } public DateTime? CreateTime { get; set; } public DateTime? UpdateTime { get; set; } } }