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