using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model.MES.Yada { /// /// ʵÌ壺mes_ShipList /// [Serializable] [SugarTable("mes_ShipList")] public class mes_ShipList : iViewEntity { #region ¹¹Ô캯Êý /// /// ʵÌ壺mes_ShipList /// public mes_ShipList() {} #endregion #region ¹«¹²ÊôÐÔ /// /// ³ö»õµ¥ºÅ /// public string ShipDoc { get; set; } /// /// ¹¤µ¥ºÅ /// public string MoDoc { get; set; } /// /// ״̬ /// public int Status { get; set; } /// /// ×éÖ¯ID /// public long Org { get; set; } /// /// ÒµÎñÈÕÆÚ /// public DateTime BusinessDate { get; set; } = DateTime.MinValue; /// /// ¸üÐÂʱ¼ä /// public DateTime ModifiedOn { get; set; } = DateTime.MinValue; /// /// ³ö»õÊýÁ¿ /// public double ShipQty { get; set; } #endregion #region ÐéÄâÊôÐÔ /*Àý×Ó [SugarColumn(IsIgnore = true)] public string FieldName { get; set; } */ #endregion #region ö¾Ù±äÁ¿ /*Àý×Ó public enum FieldNames { [Description("ö¾ÙÃèÊö0")] Enum0, [Description("ö¾ÙÃèÊö1")] Enum1, } */ #endregion #region ¹«¹²·½·¨ #endregion }//endClass }