CloudGamingAdmin/admin-server/CloudGaming.Repository.Game/Entities/App/T_Epg_Cfg.cs
2024-11-15 02:58:48 +08:00

146 lines
3.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace CloudGaming.Repository.Game.Entities.App;
/// <summary>
/// Epg配置表
/// </summary>
[Table("T_Epg_Cfg")]
[EntityDescription(NameRuleMode = NameRuleMode.TableName, NameRuleType = NameRuleType.UpperSnakeCase)]
public class T_Epg_Cfg : DefaultGameAppEntity
{
/// <summary>
/// epg分组 => 备注: epg分组
/// </summary>
public Int32 EpgCategory { get; set; }
/// <summary>
/// 资源Id => 备注: 资源Id
/// </summary>
public string? ResId { get; set; }
/// <summary>
/// 资源类型 => 备注: 资源类型
/// </summary>
public Int32 ResType { get; set; }
/// <summary>
/// 资源参数 => 备注: 资源参数
/// </summary>
public string? ResParams { get; set; }
/// <summary>
/// 排序-正序 => 备注: 排序-正序
/// </summary>
public Int32 OrderId { get; set; }
/// <summary>
/// 标题 => 备注: 标题
/// </summary>
public string? Title { get; set; }
/// <summary>
/// 副标题 => 备注: 标题2
/// </summary>
public string? Title2 { get; set; }
/// <summary>
/// 图片 => 备注: 图片
/// </summary>
public Int32 ImageId { get; set; }
/// <summary>
/// 使用原始资源图样式n_n => 备注: 使用原始资源图样式n_n
/// </summary>
public int ImageResStyle { get; set; }
/// <summary>
/// 是否启用 => 备注: 是否启用
/// </summary>
public Boolean IsOnline { get; set; }
/// <summary>
/// 角标 => 备注: 角标
/// </summary>
public Int32 CornerIconId { get; set; }
/// <summary>
/// 更新时间 => 备注: 更新时间
/// </summary>
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 代码标识 => 备注: 代码标识
/// </summary>
public string? IdName { get; set; }
/// <summary>
/// 图片2-预留 => 备注: 图片2-预留
/// </summary>
public Int32 ImageId2 { get; set; }
/// <summary>
/// 启用时间 => 备注: 启用时间
/// </summary>
public DateTime? StartEnableTime { get; set; }
/// <summary>
/// 结束时间 => 备注: 结束时间
/// </summary>
public DateTime? EndEnableTime { get; set; }
/// <summary>
/// 图片3 => 备注: 图片3
/// </summary>
public Int32 ImageId3 { get; set; }
/// <summary>
/// 国家 => 备注: 国家
/// </summary>
public string? CountryName { get; set; }
/// <summary>
/// 州 => 备注: 州
/// </summary>
public string? Continent { get; set; }
/// <summary>
/// 渠道 => 备注: 渠道
/// </summary>
public string? Channel { get; set; }
/// <summary>
/// 平台安卓还是ios => 备注: 平台安卓还是ios
/// </summary>
public string? Platform { get; set; }
/// <summary>
/// 创建时间 => 备注: 创建时间
/// </summary>
public DateTime? CreateTime { get; set; }
}