baotian
2024-06-04 b959135a1139fb66646523d92e5bd20c5910f283
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using iWare.Wms.Core;
 
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<WorkPieceInfoOutput> WorkPieceInfoLst { get; set; }
        /// <summary>
        /// 密码
        /// </summary>
        public string Password { get; set; }
 
    }
 
    
}