You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
644 B

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