cnf
2025-05-08 ad1aeb59db293e459695b131323fd0caa58e7be1
1
2
3
4
5
6
7
8
9
10
11
12
13
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; }
}