using SqlSugar; using System; namespace Tiger.Model.Entitys.MES { [SugarTable("erp.c_stock_info_t", "c_stock_info_t")] public class C_Stock_Info_t { /// /// /// public string STOCK_NO { get; set; } /// /// /// public string STOCK_DATE { get; set; } /// /// /// public string EMP_NO { get; set; } /// /// /// public string FG_SITE { get; set; } /// /// /// public string CUST_CODE { get; set; } /// /// /// public int ITEM_NO { get; set; } /// /// /// public string MO_NUMBER { get; set; } /// /// /// public string KP_NO { get; set; } /// /// /// public string UNIT { get; set; } /// /// /// public int QTY { get; set; } /// /// /// public string AREA { get; set; } /// /// /// public string LOCATION { get; set; } /// /// /// public string BATCH { get; set; } /// /// /// public DateTime DOWNLOAD_TIME { get; set; } /// /// /// public DateTime STOCK_TIME { get; set; } /// /// /// public string WMS_LOC { get; set; } /// /// /// public int UP_FLAG { get; set; } /// /// /// public int UP_COUNT { get; set; } /// /// /// public DateTime UP_TIME { get; set; } /// /// /// public string UP_MSG { get; set; } } }