You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.0 KiB
C#

7 months ago
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 HeatTreatPlaEntrySpeciQueryArgs
{
public DateTime START_TIME { get; set; }
public DateTime END_TIME { get; set; }
public string FUR_NUM { get; set; }
public string CATEGORY { get; set; }
public string FUNCTION { get; set; }
public string THK_MIN { get; set; }
public string THK_MAX { get; set; }
public string WIDTH_MIN { get; set; }
public string WIDTH_MAX { get; set; }
public string LENGTH_MIN { get; set; }
public string LENGTH_MAX { get; set; }
public string START_FUR_LEN { get; set; }
public string END_FUR_LEN { get; set; }
public string START_SINGLE_WEI_MAX { get; set; }
public string END_SINGLE_WEI_MAX { get; set; }
public string TEMP_REGION_MIN { get; set; }
public string TEMP_REGION_MAX { get; set; }
}
}