using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.BasicInfo { public class ProductInfo { public int id { get; set; } public int productId { get; set; } public string outId { get; set; } public string orderId { get; set; } public string code { get; set; } public string material { get; set; } public string colorName { get; set; } public decimal length { get; set; } // 修改为 decimal public decimal width { get; set; } // 修改为 decimal public decimal thickness { get; set; } // 修改为 decimal public decimal cutLength { get; set; } // 修改为 decimal public decimal cutWidth { get; set; } // 修改为 decimal public decimal cutThickness { get; set; } // 修改为 decimal public int num { get; set; } public string grain { get; set; } public string name { get; set; } public string baseName { get; set; } } }