bklLiudl
2024-05-25 484e5129e4c9a671c5660a556a24bd306f1fdd9b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Model.ModelDto
{
    public class OutPdaInfo
    {
        public string OutModel { get; set; }                     // 拣货区(出库口)
        public int PlanQty { get; set; }                       // 计划数量
        public int? FinishQty { get; set; }                       // 完成数量
        public string Standard { get; set; }                       // 规格
        public int PickQty { get; set; }                       // 托盘待拣数量
        public int? PickedQty { get; set; }                       // 托盘已拣数量
    }
    public class BoxInfo
    {
        public string BoxNo { get; set; }                     // 箱码/支码
        public int Qty { get; set; }                       // 箱内数量 
        public string SkuNo { get; set; }                   // 物料编码 
        public string SkuName { get; set; }                 // 物料名称
        public string LotNo { get; set; }                   // 批次 
        public int? PickedQty { get; set; }                       // 箱内已拣数量
    }
    public class DetailIdSkuLotNo
    {
        public int SoDetailId { get; set; }
        public string PalletNo { get; set; }
        public string SkuNo { get; set; }
        public string SkuName { get; set; }
        public string LotNo { get; set; }
    }
 
}