using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ibk.IPD.Entity.IPD_MR.StdMgt.QueryArgs { public class EpLadleTimeQueryArgs { public DateTime START_TIME { get; set; } public DateTime END_TIME { get; set; } //工厂 public string PLT { get; set; } //机号 public string PRC_LINE { get; set; } //离开工序 public string STR_PROC { get; set; } //到达工序 public string END_PROC { get; set; } //钢包移动时间 public string START_LADLE_MOVE_TME { get; set; } public string END_LADLE_MOVE_TME { get; set; } } }