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 SpeciDockManagementQueryArgs { public DateTime START_TIME { get; set; } public DateTime END_TIME { get; set; } //主键ID public string PK { get; set; } //钢种 public string STLGRD { get; set; } //工艺 public string PROCESS { get; set; } //拉速 public string START_SPEED { get; set; } public string END_SPEED { get; set; } //断面 public string SECTION { get; set; } } }