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