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; }
|
|
public List<string>? OrderStatus { get; set; } // 新增:工单状态筛选
|
public string? staffNo { get; set; } // 新增:报工人员工号
|
public decimal? currentCjNum { get; set; } // 新增:报工时采集数
|
public decimal? initCjNum { get; set; } // 新增:初始采集数
|
}
|