Admin
5 天以前 bd6818fc9d40f343547bafca0743658f3c0379dc
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WIDESEA.Common.CustomModels
{
    public class JK_FINISHTASK
    {
        /// <summary>
        /// 主健
        /// </summary>
        public int ID { get; set; }
        /// <summary>
        /// 调拨单号
        /// </summary>
        public string ALLOTNO { get; set; }
        /// <summary>
        /// 外箱条码
        /// </summary>
        public string OUTITEMCODE { get; set; }
        /// <summary>
        /// 内箱条码
        /// </summary>
        public string INITEMCODE { get; set; }
        /// <summary>
        /// 物料条码
        /// </summary>
        public string ITEM_CODE { get; set; }
        /// <summary>
        /// 调入货位
        /// </summary>
        public string LOCATION { get; set; }
        /// <summary>
        /// 数量
        /// </summary>
        public string QTY { get; set; }
        /// <summary>
        /// 任务类型--1-调拨入库,2-发料调拨
        /// </summary>
        public string TASKTYPE { get; set; }
        /// <summary>
        /// 结果--0-未完成,1-表示完成
        /// </summary>
        public decimal RESULT { get; set; }
        /// <summary>
        /// 读取标识--默认为0:未读取-0,已读取-1
        /// </summary>
        public decimal READ_FLAG { get; set; } = 0;
        /// <summary>
        /// 备用字段1
        /// </summary>
        public string FIELD1 { get; set; }
        /// <summary>
        /// 备用字段2
        /// </summary>
        public string FIELD2 { get; set; }
        /// <summary>
        /// 备用字段3
        /// </summary>
        public string FIELD3 { get; set; }
        /// <summary>
        /// 备用字段4
        /// </summary>
        public string FIELD4 { get; set; }
        /// <summary>
        /// 备用字段5
        /// </summary>
        public string FIELD5 { get; set; }
        public string FACTORY { get; set; } = "4010";
 
    }
}