11
tjx
2025-11-12 c6d9fc76d16c944e64d6490eb2a6d866fd7a38f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace MES.Service.Dto.webApi;
 
public class GenerateBarcodeRequest
{
    public int panelQuantity { get; set; }
    public string @operator { get; set; }
    public string workOrderNumber { get; set; }
}
 
public class GenerateBarcodeResponse
{
    public List<string> barcodes { get; set; } = new List<string>();
}
 
public class ConfirmBarcodeRequest
{
    public List<string> barcodes { get; set; } = new List<string>();
    public string @operator { get; set; }
    public string workOrderNumber { get; set; }
}