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.
34 lines
1.2 KiB
34 lines
1.2 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace QMAPP.BoraUpgrade.Entity
|
||
|
{
|
||
|
public class T_MD_MATERIAL
|
||
|
{
|
||
|
public string PID { get; set; }
|
||
|
public string MATERIAL_CODE { get; set; }
|
||
|
public string MATERIAL_TYPE_CODE { get; set; }
|
||
|
public string UNIT_CODE { get; set; }
|
||
|
public string MATERIAL_NAME { get; set; }
|
||
|
public string MATERIAL_COMP { get; set; }
|
||
|
public string REMARK { get; set; }
|
||
|
public string CREATEUSER { get; set; }
|
||
|
public DateTime CREATEDATE { get; set; }
|
||
|
public string UPDATEUSER { get; set; }
|
||
|
public string UPDATEDATE { get; set; }
|
||
|
public string OUTSOURCE { get; set; }
|
||
|
public int STD_QTY { get; set; }
|
||
|
public string FLGDEL { get; set; }
|
||
|
public string COLOR { get; set; }
|
||
|
public string HBTYPE { get; set; }
|
||
|
public string PROJECTCODE { get; set; }
|
||
|
public int WEIGHT { get; set; }
|
||
|
public string MATERIAL_SHORT { get; set; }
|
||
|
public string WORKBIN_TYPE { get; set; }
|
||
|
public int CAPACITY { get; set; }
|
||
|
public string FACTORY_CODE { get; set; }
|
||
|
}
|
||
|
}
|