NewGaoKaoApi/New_College.Model/Models/BannerInfo.cs

44 lines
996 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
/// <summary>
/// 海报管理
/// </summary>
public class BannerInfo : DEntityRootTenant
{
/// <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; }
}
}