1
z8018
2025-05-06 7da6f394864ba0412c1ac58ba7752862de7d3f3d
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
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; }
 
    }
}