using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.Json.Serialization;
using SqlSugar;
using Yi.Framework.Model.Base;
namespace Yi.Framework.Model.RABC.Entitys
{
///
/// 字典信息表
///
[SugarTable("DictionaryInfo")]
public partial class DictionaryInfoEntity : IBaseModelEntity
{
public DictionaryInfoEntity()
{
CreateTime = DateTime.Now;
}
[JsonConverter(typeof(ValueToStringConverter))]
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
public long Id { get; set; }
///
/// 字典类型
///
[SugarColumn(ColumnName = "DictType")]
public string? DictType { get; set; }
///
/// 字典标签
///
[SugarColumn(ColumnName = "DictLabel")]
public string? DictLabel { get; set; }
///
/// 字典值
///
[SugarColumn(ColumnName = "DictValue")]
public string? DictValue { get; set; }
///
/// 是否为该类型的默认值
///
[SugarColumn(ColumnName = "IsDefault")]
public bool? IsDefault { get; set; }
///
/// 创建者
///
[SugarColumn(ColumnName = "CreateUser")]
public long? CreateUser { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CreateTime")]
public DateTime? CreateTime { get; set; }
///
/// 修改者
///
[SugarColumn(ColumnName = "ModifyUser")]
public long? ModifyUser { get; set; }
///
/// 修改时间
///
[SugarColumn(ColumnName = "ModifyTime")]
public DateTime? ModifyTime { get; set; }
///
/// 是否删除
///
[SugarColumn(ColumnName = "IsDeleted")]
public bool? IsDeleted { get; set; }
///
/// 租户Id
///
[SugarColumn(ColumnName = "TenantId")]
public long? TenantId { get; set; }
///
/// 排序字段
///
[SugarColumn(ColumnName = "OrderNum")]
public int? OrderNum { get; set; }
///
/// 描述
///
[SugarColumn(ColumnName = "Remark")]
public string? Remark { get; set; }
///
/// tag类型
///
[SugarColumn(ColumnName = "ListClass")]
public string? ListClass { get; set; }
///
/// tagClass
///
[SugarColumn(ColumnName = "CssClass")]
public string? CssClass { get; set; }
}
}