40 lines
914 B
C#
40 lines
914 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using LearningOfficer.OA.Common.Enums;
|
|
using SqlSugar;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.SystemInfo
|
|
{
|
|
/// <summary>
|
|
/// 首页banner
|
|
///</summary>
|
|
[SugarTable("banner")]
|
|
public class Banner : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 备 注:角色名称
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "banner_file_id")]
|
|
public long BannerFileId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:banne名称
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "banner_name")]
|
|
public string BannerName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:假删除
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "is_deleted")]
|
|
public bool IsDeleted { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |