namespace MES.Service.Dto.webApi.SRM;
|
|
public class PrintBarcode
|
{
|
public string? DeliveryNo { get; set; }
|
public string? LineNo { get; set; }
|
public string? SmallBarcode { get; set; }
|
public string? ProductCode { get; set; }
|
public string? IncludeQty { get; set; }
|
public string? OuterBarcode { get; set; }
|
public string? BarcodeType { get; set; }
|
public string? IsMerge { get; set; }
|
}
|