using System; using SqlSugar; using System.ComponentModel; using GDZZ.Core.Entity; namespace GDZZ.Application.Entity { /// /// 推荐表 /// [SugarTable("mini_recommend")] [Description("推荐表")] public class Recommend : DEntityBase { /// /// 推荐图标 /// public string Picture { get; set; } /// /// 推荐标题 /// public string Text { get; set; } } }