杨张扬
4 天以前 c2d2f4eb78c54bdfdb6ffb0df5932751d538ed14
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_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; }
    }
}