1
z8018
2025-06-10 e46aa927d231af83724683c7286d9db503e24cf7
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
29
30
31
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; }
    }
}