You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.5 KiB
39 lines
1.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.BoraUpgrade.Entity
|
|
{
|
|
public class T_AW_PRODUCT
|
|
{
|
|
public string PID { get; set; }
|
|
public string PRODUCTTYPE { get; set; }
|
|
public string PRODUCTCODE { get; set; }
|
|
public string PRODUCTSOURCE { get; set; }
|
|
public string MACHINENAME { get; set; }
|
|
public string MACHINECODDE { get; set; }
|
|
public string MATERIAL_CODE { get; set; }
|
|
public string STATUS { get; set; }
|
|
public string ISPARENT { get; set; }
|
|
public string CURRENTPROCESS { get; set; }
|
|
public string PRODUCELINE { get; set; }
|
|
public string PRODUCESHIFTNAME { get; set; }
|
|
public string PRODUCESHIFTTCODE { get; set; }
|
|
public string OUTFLAG { get; set; }
|
|
public string USINGSTATE { get; set; }
|
|
public Nullable<int> CAPACITY { get; set; }
|
|
public Nullable<int> USINGCOUNT { get; set; }
|
|
public string CREATEUSER { get; set; }
|
|
public Nullable<System.DateTime> CREATEDATE { get; set; }
|
|
public string UPDATEUSER { get; set; }
|
|
public Nullable<System.DateTime> UPDATEDATE { get; set; }
|
|
public string WORKCELL_CODE { get; set; }
|
|
public string WORKLOC_CODE { get; set; }
|
|
public string WORKCENTER_CODE { get; set; }
|
|
public string TEAM_CODE { get; set; }
|
|
public string ENDOFLINE { get; set; }
|
|
public string MATERIAL_TYPE { get; set; }
|
|
public string PLAN_NO { get; set; }
|
|
}
|
|
}
|
|
|