1
z8018
2025-04-05 f94288b728f81b20c29e626526c584c11a7894a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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; }
    }
}