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
841 B
C#
33 lines
841 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 CpNiscoChmcNewQueryArgs
|
|
{
|
|
public DateTime START_TIME { get; set; }
|
|
public DateTime END_TIME { get; set; }
|
|
//钢种
|
|
public string STLGRD { get; set; }
|
|
|
|
//一炉多钢种组
|
|
public string STLGRD_GRP { get; set; }
|
|
|
|
//钢种描述
|
|
public string STEEL_GRD_DETAIL { get; set; }
|
|
|
|
//优先顺序
|
|
public string START_STL_SEQ { get; set; }
|
|
public string END_STL_SEQ { get; set; }
|
|
|
|
//是否在用
|
|
public string STLGRD_FL { get; set; }
|
|
|
|
public string START_STL_LQUID_TEMP { get; set; }
|
|
public string END_STL_LQUID_TEMP { get; set; }
|
|
}
|
|
}
|