using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.BasicInfo { public class OrderInfo { public int OrderHeadId { get; set; } public int OrderRowNum { get; set; } public string OrderNo { get; set; } public int Quantity { get; set; } public string OrderBatch { get; set; } public string Barcode { get; set; } public decimal Length { get; set; } public decimal Width { get; set; } public decimal Thickness { get; set; } } }