快乐的昕的电脑
2025-10-18 c78de54cc66df1fc8d68e23858b37e50d1178a02
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
33
34
35
36
37
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; }
 
    public List<string>? OrderStatus { get; set; } // 新增:工单状态筛选
    public string? staffNo { get; set; } // 新增:报工人员工号
    public decimal? currentCjNum { get; set; } // 新增:报工时采集数
    public decimal? initCjNum { get; set; } // 新增:初始采集数
}