啊鑫
8 天以前 59af98c2aeb6c40d820e8d5c2f9f6764f57721bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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; }
}