wangxinhui
2025-10-26 733c975cd8647f6d006736f1863bad731e32e6fb
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;
 
namespace WIDESEA_External.Model
{
    /// <summary>
    /// MES配送出发通知
    /// </summary>
    public class MESDispatchModel
    {
        public List<PlanDistributionInfo> PRO_DispachPlanDistributionInfos {  get; set; }
    }
    public class PlanDistributionInfo
    {
        /// <summary>
        /// 计划明细ID
        /// </summary>
        public int DispatchPlanMaterialId { get; set; }
        /// <summary>
        /// 物料编码
        /// </summary>
        public string InvItemCode { get; set; }
        /// <summary>
        /// 物料数量
        /// </summary>
        public decimal Quantity { get; set; }
        /// <summary>
        /// 发出时间
        /// </summary>
        public string SendOutTime { get; set; }
        /// <summary>
        /// 预计到达时间
        /// </summary>
        public string ArrivalTime { get; set;}
    }
}