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; }
|
}
|