schangxiang@126.com
2025-09-02 cf5ef52a94c25e2ce92d0a0b7ebca62d81852873
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
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace yunneiPda.EnumDefine
{
    public class inStockEntity<T>
    {
        /// <summary>
        /// 表单ID,如果不为0,就表示是编辑 【EditBy shaocx,2022-03-21】
        /// </summary>
        public int orderCodeId { get; set; }
 
        /// <summary>
        /// 类型:body header
        /// </summary>
        public string type { get; set; }
 
        /// <summary>
        /// 组盘起点
        /// </summary>
        public string station { get; set; }
        public int quantity { get; set; }
        public string supplier { get; set; }
        /// <summary>
        /// 物料编号
        /// </summary>
        public string productCode { get; set; }
        public string containerCode { get; set; }
        public string inStockType { get; set; }
        public string emptyType { get; set; }
        public string userName { get; set; }
        public List<T> dataList { get; set; }
 
        /// <summary>
        /// 最终去往的站点,用于处理不走立体库,直接去天永上线点的逻辑   [EditBy shaocx,2022-02-06]  
        /// </summary>
        public string toStieCode { get; set; }
    }
    public class serialNumbers
    {
        public string serialNumber { get; set; }
    }
}