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.
63 lines
1.4 KiB
C#
63 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ibk.IPD.Entity.IPD_PS.QueryArgs
|
|
{
|
|
public class SupersedeQueryArgs
|
|
{
|
|
public string PLATE_NO { get; set; }
|
|
|
|
public string APLY_STDSPEC { get; set; }
|
|
|
|
public string PROC_CD { get; set; }
|
|
|
|
public string START_THK { get; set; }
|
|
|
|
public string END_THK { get; set; }
|
|
|
|
public string WID { get; set; }
|
|
|
|
public string LEN { get; set; }
|
|
|
|
public string WGT { get; set; }
|
|
|
|
public string REDO_HOT { get; set; }
|
|
|
|
public string SIZE_KND { get; set; }
|
|
|
|
public string TRIMMING { get; set; }
|
|
|
|
public string ORD_NO { get; set; }
|
|
|
|
public string SUB_RATE { get; set; }
|
|
|
|
public string ORD_ITEM { get; set; }
|
|
|
|
public string STLGRD { get; set; }
|
|
|
|
public string START_LEN { get; set; }
|
|
|
|
public string END_LEN { get; set; }
|
|
|
|
public string START_WID { get; set; }
|
|
|
|
public string END_WID { get; set; }
|
|
//是否完全替代
|
|
public string IS_FULL { get; set; }
|
|
//替代时仓库
|
|
public string GP_CUR_INV { get; set; }
|
|
//欠量
|
|
public string SUB_LACK_NUM { get; set; }
|
|
|
|
//板坯号
|
|
public string SLAB_NO { get; set; }
|
|
|
|
//轧制工厂
|
|
public string PLT { get; set; }
|
|
|
|
}
|
|
}
|