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.

33 lines
685 B
C#

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; }
}
}