wangxinhui
2024-12-26 78b99e5348592a29ca1393a5e13db619cc4eba56
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;
 
namespace WIDESEA_Entity.DomainModels.TongRi
{
    public class ReportTaskComplete
    {
        public string reqSource { get; set; } = "MES";
 
        /// <summary>
        /// 唯一任务号
        /// </summary>
        public string taskId { get; set; } = Guid.NewGuid().ToString();
 
        /// <summary>
        /// 出入库申请的任务号
        /// </summary>
        public string refTaskId { get; set; }
 
        /// <summary>
        /// 任务类型 1入库,2出库
        /// </summary>
        public string taskType { get; set; }
 
        /// <summary>
        /// 物料编码
        /// </summary>
        public string containerCode { get; set; }
 
        /// <summary>
        /// 物料类型
        /// </summary>
        public string containerType { get; set; }
 
        /// <summary>
        /// 取放货位置编码
        /// </summary>
        public string fromLocationCode { get; set; }
 
        /// <summary>
        /// 请求时间
        /// </summary>
        public DateTime reqTime { get; set; } = DateTime.Now;
    }
}