using NCC.Common.Const;
using SqlSugar;
using System;
namespace NCC.Blind.Entitys
{
///
/// 海报管理
///
[SugarTable("tb_Poster")]
[Tenant(ClaimConst.TENANT_ID)]
public class TbPosterEntity
{
///
/// 主键
///
[SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true)]
public string Id { get; set; }
///
/// 图片
///
[SugarColumn(ColumnName = "F_Banner")]
public string Banner { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "F_CreatorTime")]
public DateTime? CreatorTime { get; set; }
///
/// 修改时间
///
[SugarColumn(ColumnName = "F_LastModifyTime")]
public DateTime? LastModifyTime { get; set; }
///
/// 创建用户
///
[SugarColumn(ColumnName = "F_CreatorUserId")]
public string CreatorUserId { get; set; }
///
/// 标题
///
[SugarColumn(ColumnName = "F_Title")]
public string Title { get; set; }
}
}