1
schangxiang@126.com
2024-08-31 11a0ed37d6fb4650d616cc94b11f07d283ea1e97
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
46
47
48
49
50
51
52
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using iWare.Wms.Core;
using iWare.Wms.Core.Enum;
 
namespace iWare.Wms.Application {
    /// <summary>
    /// 出库执行查询参数
    /// </summary>
    public class WorkPieceByOP80NewCodeInputSearch
    {
 
        /// <summary>
        /// 工件OP80码
        /// </summary>
       public string OP80NewCode { get; set; }
    }
 
    /// <summary>
    /// 出库执行输入参数
    /// </summary>
    public class OutBoundInput
    {
 
        /// <summary>
        /// 工件数据
        /// </summary>
        public List<OutBoundDetailsInput> WorkPieceInfoLst { get; set; }
        /// <summary>
        /// 密码
        /// </summary>
        public string Password { get; set; }
 
    }
 
    /// <summary>
    /// 出库执行输入明细参数
    /// </summary>
    public class OutBoundDetailsInput
    {
        /// <summary>
        /// 工件OP80码
        /// </summary>
        public string OP80NewCode { get; set; }
      
    }
 
 
}