using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ibk.IPD.Entity.IPD_MR.HotTreatment.QueryArgs { public class HeatTreatEntryTimeQueryArgs { public DateTime START_TIME { get; set; } public DateTime END_TIME { get; set; } public string HEAT_TREAT_CLASS { get; set; } public string STEEL_GRADE { get; set; } public string START_THK { get; set; } public string END_THK { get; set; } public string START_IN_TIME { get; set; } public string END_IN_TIME { get; set; } } }