leiqunqing
2026-01-23 fb24c7db81cbf7c5012e4bd0d9de588c64e30af7
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.WMS
{
    /// <summary>
    /// 出入库完成反馈(WCS推送完成状态给WMS)
    /// </summary>
    public class WMSInOutBoundCompleteFeedback
    {
        /// <summary>
        /// 任务号
        /// </summary>
        public string taskCode { get; set; }
 
        /// <summary>
        /// 容器编码
        /// </summary>
        public string containerCode { get; set; }
 
        /// <summary>
        /// 起点位置
        /// </summary>
        public string fromStationCode { get; set; }
 
        /// <summary>
        /// 终点位置
        /// </summary>
        public string toLocationCode { get; set; }
 
        /// <summary>
        /// 业务类型
        /// 1-面料;2-成品;3-裁剪;4-配套
        /// </summary>
        public int? businessType { get; set; }
 
        /// <summary>
        /// 完成类型
        /// 1-自动完成;2-手动完成
        /// </summary>
        public int completeType { get; set; } = 1;
    }
}