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#
42 lines
1.0 KiB
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 QpNiscoChmcQueryArgs
|
|
{
|
|
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; }
|
|
|
|
//钢种分类
|
|
public string STEELCATE { get; set; }
|
|
|
|
//钢种分类中文
|
|
public string STEELCATECNH { get; set; }
|
|
|
|
//管理科室
|
|
public string DEPNO { get; set; }
|
|
}
|
|
}
|