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
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_PS
{
public class OrderEntity
{
public string ORD_NO { get; set; }
public string ORD_ITEM { get; set; }
public string REC_STS { get; set; }
public string ORD_STS { get; set; }
public string HOLD_FL { get; set; }
public string STLGRD { get; set; }
public string ORD_THK { get; set; }
public string ORD_WID { get; set; }
public string ORD_LEN { get; set; }
public string DEL_TOL_MIN { get; set; }
public string DEL_TOL_MAX { get; set; }
public string PROD_WGT { get; set; }
public string TOT_WGT { get; set; }
public string STDSPEC_YY { get; set; }
public string CFM_MILL_PLT { get; set; }
public string JIT_FLAG { get; set; }
public string CUST_DEL_FR_DATE { get; set; }
public string CUST_DEL_TO_DATE { get; set; }
public string ENDUSE_CD { get; set; }
}
}