快乐的昕的电脑
2025-09-23 ae390b6ce95ac316ca9cf1f24ff4fc2bb2d240d3
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
32
namespace PadApplication.Entites.Dto;
 
public class OrderMachineDto
{
    public string? EditDate { get; set; }
    public decimal? OrderId { get; set; }
    public string? machineNo { get; set; }
    public string? orderNo { get; set; }
    public decimal? Flag { get; set; }
 
    public decimal? PrintQty { get; set; }
 
    public decimal? Count { get; set; }
 
    public decimal? bf { get; set; }
 
    public string? user { get; set; }
 
    public string? ngId { get; set; }
 
    public decimal? staId { get; set; }
 
    public string? engineeringNo { get; set; }
 
    public string[]? barcodes { get; set; }
 
    /// <summary>
    /// 请求唯一标识符,用于防重复提交
    /// 格式:{orderNo}_{timestamp}_{randomString}
    /// </summary>
    public string? RequestId { get; set; }
}