啊鑫
2024-12-24 e328deb435c326025f3b7a510011e69d0353e69c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace NewPdaSqlServer.Dto.service;
 
 
/// <summary>
/// 生产报工扫描结果
/// </summary>
public class ScanWorkResult
{
    public string TaskNo { get; set; }
    public string ItemNo { get; set; }
    public decimal PlanQty { get; set; }
    public decimal ReportedQty { get; set; }
    public decimal CurrentQty { get; set; }
    public decimal BarcodeQty { get; set; }
    public string ItemName { get; set; }
    public string ItemModel { get; set; }
    public string Message { get; set; }
}