杨张扬
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
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_RemeltDetail")]
    public class TN_RemeltDetail: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; }
    }
}