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
73
74
75
76
77
78
79
80
81
82
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WIDESEA.Common.CustomModels
{
    public class JK_LOCATION
    {
        /// <summary>
        /// 物料编码
        /// </summary>
        public string ITEMNO { get; set; }
        /// <summary>
        /// 仓库编码-默认
        /// </summary>
        public string WAREHOUSEID { get; set; } = "4050";
        /// <summary>
        /// 移动前货位号
        /// </summary>
        public string OLD_LOCATIONNUMBER { get; set; }
        /// <summary>
        /// 当前货位号
        /// </summary>
        public string NOW_LOCATIONNUMBER { get; set; }
        /// <summary>
        /// 外箱条码
        /// </summary>
        public string OUTITEMCODE { get; set; }
        /// <summary>
        /// 内箱条码
        /// </summary>
        public string INITEMCODE { get; set; }
        /// <summary>
        /// 数量
        /// </summary>
        public string QTY { get; set; }
        /// <summary>
        /// 移动日期
        /// </summary>
        public DateTime? UPDATA_DATE { get; set; } = null;
        /// <summary>
        /// 入库日期
        /// </summary>
        public DateTime? INBOUND_DATE { get; set; }
        /// <summary>
        /// 操作人--工号
        /// </summary>
        public string USER_ID { 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; }
        /// <summary>
        /// 入库类型--1-采购收货,2-赠品,3-库存异动
        /// </summary>
        public decimal TASKTYPE { get; set; } = 1;
        /// <summary>
        /// 主健
        /// </summary>
        public int ID { get; set; }
    }
}