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#

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 SupersedeConfiramQueryArgs
{
public DateTime START_TIME { get; set; }
public DateTime END_TIME { get; set; }
public string PLATE_NO { get; set; }
public string PROC_CD { get; set; }
public string THK { get; set; }
public string WID { get; set; }
public string LEN { get; set; }
public string SURPLUS_THK { get; set; }
public string SURPLUS_WID { get; set; }
public string SURPLUS_LEN { get; set; }
public string SURPLUS_PER { get; set; }
public string ORD_NO { get; set; }
public string ORD_ITEM { get; set; }
public string STATE { get; set; }
public string IS_FULL { get; set; }
//处理状态
public string HAN_STATE { get; set; }
//处理内容
public string HAN_CON { get; set; }
//替代时临时仓库
public string GP_CUR_INV { get; set; }
//是否终结订单
public string IS_END { get; set; }
//订单材/余材
public string ORD_FL { get; set; }
//现在状态
public string PROC_CD_NOW { get; set; }
//现在状态
public string DIVISION { get; set; }
}
}