using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model.MES.Yada { /// /// ʵÌ壺mes_MiscShipLine /// [Serializable] [SugarTable("mes_MiscShipLine")] public class mes_MiscShipLine : iViewEntity { #region ¹¹Ô캯Êý /// /// ʵÌ壺mes_MiscShipLine /// public mes_MiscShipLine() {} #endregion #region ¹«¹²ÊôÐÔ /// /// /// public long MiscShipID { get; set; } /// /// /// public long MiscShipLineID { get; set; } /// /// /// public string DocNo { get; set; } /// /// /// public string ItemCode { get; set; } /// /// /// public string ItemName { get; set; } /// /// /// public string ItemDescription { get; set; } /// /// /// public string SapCode { get; set; } /// /// /// public double StoreUOMQty { get; set; } /// /// /// public string StoreUOM { get; set; } /// /// /// public double CostUOMQty { get; set; } /// /// /// public string CostUOM { get; set; } /// /// /// public double CostPrice { get; set; } /// /// /// public double CostMny { get; set; } /// /// /// public string WhCode { get; set; } /// /// /// public string WhName { get; set; } /// /// /// public string BenefitDept { get; set; } /// /// /// public string BenefitDeptName { get; set; } /// /// /// public string OutStorageReason { get; set; } /// /// /// public string CreatedBy { get; set; } /// /// /// public DateTime CreatedOn { get; set; } = DateTime.MinValue; /// /// /// public string ModifiedBy { get; set; } /// /// /// public DateTime ModifiedOn { get; set; } = DateTime.MinValue; #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 }