杨张扬
2025-05-14 5729cd163328fc6b53e5db84662ffc06dd6a9bd1
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.DoubleCoin.models
{
    /// <summary>
    /// WMS库存管理
    /// </summary>
    [SugarTable("TN_InventoryM")]
    public class TN_InventoryM : BaseModel
    {
        /// <summary>
        /// 入库时间
        /// </summary>
        public DateTime InAreaTime { get; set; }
 
        /// <summary>
        /// 容器号
        /// </summary>
        public string RFID { get; set; }
 
        /// <summary>
        /// 登录姓名
        /// </summary>
        public string LoginName { get; set; }
 
        /// <summary>
        /// 班次
        /// </summary>
        public string Shift { get; set; }
 
        /// <summary>
        /// 物料编码
        /// </summary>
        public string ItemCode { get; set; }
 
        /// <summary>
        /// 规格
        /// </summary>
        public string Spec { get; set; }
 
        /// <summary>
        /// 重量
        /// </summary>
        public float Weight { get; set; }
 
        /// <summary>
        /// 物料状态
        /// </summary>
        public string ItemState { get; set; }
 
        /// <summary>
        /// 过期时间
        /// </summary>
        public DateTime Expiration { get; set; }
    }
}