using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_CMS_Member_Favorite")] public partial class SETB_CMS_Member_Favorite : ModelContext { public SETB_CMS_Member_Favorite() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string FavoriteID { get; set; } public const string CN_FAVORITEID = "FavoriteID"; /// /// Desc: /// Default: /// Nullable:True /// public string MemberID { get; set; } public const string CN_MEMBERID = "MemberID"; /// /// Desc: /// Default: /// Nullable:True /// public string Type { get; set; } public const string CN_TYPE = "Type"; /// /// Desc: /// Default: /// Nullable:True /// public string ParentID { get; set; } public const string CN_PARENTID = "ParentID"; /// /// Desc: /// Default: /// Nullable:True /// public string Memo { get; set; } public const string CN_MEMO = "Memo"; } }