dengjunjie
2026-03-13 1cf0b3dd6b2587934a8a34ddd1b3a5a851e9c375
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.WMS
{
    /// <summary>
    /// 移库数据反馈(WCS移库数据回传)
    /// </summary>
    public class WMSMoveLocationFeedback
    {
        /// <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 orgLocationCode { get; set; }
 
        /// <summary>
        /// 目标实际终点位置
        /// </summary>
        public string toLocationCode { get; set; }
 
        /// <summary>
        /// 变更位置的时间
        /// </summary>
        public string alterLocationTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
    }
}