using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
///
/// 海报管理
///
public class BannerInfo : RootEntity
{
///
/// banner name
///
[SugarColumn(IsNullable = true)]
public string bannerName { get; set; }
///
/// 图片地址
///
[SugarColumn(IsNullable = true)]
public string bannerUrl { get; set; }
///
/// 要去的地址
///
[SugarColumn(IsNullable = true)]
public string goUrl { get; set; }
///
/// banner 0,不展示,1展示是否展示
///
public int status { get; set; }
///
/// 海报位置:0 首页banner
///
public int type { get; set; }
}
}