using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WCS.Mobox3.DoubleCoin.models { /// /// 回炉料明细 /// [SugarTable("TN_RemeltDetail")] public class TN_RemeltDetail:BaseModel { /// /// 回炉时间 /// public DateTime RemeltTime { set; get;} /// /// 托盘号 /// public string CntCode { set; get;} /// /// 操作人姓名 /// public string LoginName { set; get;} /// /// 班次 /// public string Shift { set; get;} /// /// 物料编码 /// public string ItemCode { set; get;} /// /// 物料规格 /// public string Spec { set; get;} /// /// 车次 /// public string CarCode { set; get;} /// /// 重量 /// public float Weight { set; get;} /// /// 回炉机台 /// public string StartLoc { set; get;} /// /// 送达时间 /// public DateTime EndTime { set; get;} /// /// 任务号 /// public string TaskNo { set; get; } } }