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.

29 lines
656 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ibk.IPD.Entity.IpdMr.StdMgt.QueryArgs
{
public class CpNiscoChmcQueryArgs
{
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; }
}
}