杨张扬
2025-06-06 0926aaf5b0272133bb5a3d139040fa8867405de3
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
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>
    /// 余料回库(返回胶)明细
    /// </summary>
    [SugarTable("TN_TN_SurplusDetail")]
    public class TN_SurplusDetail : BaseModel
    {
        /// <summary>
        /// 回库时间
        /// </summary>
        public DateTime REMELTTIME { set; get; }
 
        /// <summary>
        /// 托盘号
        /// </summary>
        public string CNTCODE { set; get; }
 
        /// <summary>
        /// 操作人姓名
        /// </summary>
        public string LOGINNAME { set; get; }
 
        /// <summary>
        /// 班次
        /// </summary>
        public string SHIFT { set; get; }
 
        /// <summary>
        /// 物料编码
        /// </summary>
        public string ITEMCODE { set; get; }
 
        /// <summary>
        /// 物料规格
        /// </summary>
        public string SPEC { set; get; }
 
        /// <summary>
        /// 车次
        /// </summary>
        public string CARCODE { set; get; }
 
        /// <summary>
        /// 二次称重重量
        /// </summary>
        public float WEIGHT { set; get; }
 
        /// <summary>
        /// 返回机台
        /// </summary>
        public string STARTLOC { set; get; }
 
        /// <summary>
        /// 二次入库时间
        /// </summary>
        public DateTime ENDTIME { set; get; }
 
        /// <summary>
        /// 任务号
        /// </summary>
        public string TASKNO { set; get; }
    }
}