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.
80 lines
3.2 KiB
C#
80 lines
3.2 KiB
C#
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace ibk.IPD.Entity.IpdPs
|
|
{
|
|
[Serializable, Table("GP_USTRESULT")]
|
|
[JsonObject]
|
|
public class GP_USTRESULT
|
|
{
|
|
public string PLATE_NO { get; set; }
|
|
public string OCCR_CD { get; set; }
|
|
public string PLT { get; set; }
|
|
public string UST_FL { get; set; }
|
|
public string UST_GRD { get; set; }
|
|
public string UST_DEC { get; set; }
|
|
public string UST_FIN_GRD { get; set; }
|
|
public int ADD_THK { get; set; }
|
|
public int UST_THK { get; set; }
|
|
public int UST_WID { get; set; }
|
|
public int UST_LEN { get; set; }
|
|
public int UST_WGT { get; set; }
|
|
public int BEF_UST_WID { get; set; }
|
|
public int BEF_UST_LEN { get; set; }
|
|
public int BEF_UST_WGT { get; set; }
|
|
public string APLY_STDSPEC { get; set; }
|
|
public string BEF_APLY_STDSPEC { get; set; }
|
|
public string STDSPEC_UPD_FL1 { get; set; }
|
|
public string STDSPEC_UPD_FL2 { get; set; }
|
|
public string PLATE_CUT_FL { get; set; }
|
|
public string PLATE_CUT_REASON { get; set; }
|
|
public string UST_MACHINE_NO { get; set; }
|
|
public string UST_HEAD_KIND { get; set; }
|
|
public string UST_METHOD { get; set; }
|
|
public string UST_STATESCOPE { get; set; }
|
|
public string UST_REMARTS { get; set; }
|
|
public string UST_END_DATE { get; set; }
|
|
public string UST_MAN { get; set; }
|
|
public string INS_DATE { get; set; }
|
|
public string UPD_DATE { get; set; }
|
|
public string SHIFT { get; set; }
|
|
public string GROUP_CD { get; set; }
|
|
public string UST_LOC { get; set; }
|
|
public string EMP_CD1 { get; set; }
|
|
public string EMP_CD2 { get; set; }
|
|
public string EMP_CD3 { get; set; }
|
|
public string PRC_LINE { get; set; }
|
|
public string PROD_CD { get; set; }
|
|
public string REC_STS { get; set; }
|
|
public string UST_MACHINE_CD { get; set; }
|
|
public string UST_REJ_CD { get; set; }
|
|
public int UST_REJ_NUM { get; set; }
|
|
public int UST_REJ_AREA { get; set; }
|
|
public int UST_REJ_AREA_RATE { get; set; }
|
|
public int PLATE_TEMP { get; set; }
|
|
public string UST_FL_FP_1 { get; set; }
|
|
public string UST_DEC_FP_1 { get; set; }
|
|
public string UST_MAN_FP_1 { get; set; }
|
|
public string UST_END_DATE_FP_1 { get; set; }
|
|
public string UST_FL_2 { get; set; }
|
|
public string UST_DEC_2 { get; set; }
|
|
public string UST_MAN_2 { get; set; }
|
|
public string UST_END_DATE_2 { get; set; }
|
|
public string UST_FL_FP_2 { get; set; }
|
|
public string UST_DEC_FP_2 { get; set; }
|
|
public string UST_MAN_FP_2 { get; set; }
|
|
public string UST_END_DATE_FP_2 { get; set; }
|
|
public string AG_UST_FL { get; set; }
|
|
public string AG_UST_DEC { get; set; }
|
|
public string AG_UST_END_DATE { get; set; }
|
|
public string AG_UST_MAN { get; set; }
|
|
public string JL_TOOL { get; set; }
|
|
public string UST_MAN_GRADE { get; set; }
|
|
public string UST_REJ_SIZE { get; set; }
|
|
public string UST_REJ_LOC { get; set; }
|
|
|
|
}
|
|
}
|