Files
number_zj/20220330_Vote/Ewide.RoadFlow/Entity/rf_dictionary.cs
2022-03-30 17:54:33 +08:00

105 lines
2.0 KiB
C#
Raw 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.
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Runtime.Serialization;
using Furion.JsonSerialization;
namespace RoadFlow.Model
{
/// <summary>
/// 数据表实体类rf_dictionary
/// </summary>
[Table("rf_dictionary")]
[Serializable]
public partial class rf_dictionary : BaseEntity
{
/// <summary>
/// 上级ID
/// </summary>
[Display(Name = "上级ID")]
[Column("ParentId")]
[DataMember]
public string ParentId { get; set; }
/// <summary>
/// 标题
/// </summary>
[Display(Name = "标题")]
[Column("Title")]
[DataMember]
public string Title { get; set; }
/// <summary>
/// 唯一代码
/// </summary>
[Display(Name = "唯一代码")]
[Column("Code")]
[DataMember]
public string Code { get; set; }
/// <summary>
/// 值
/// </summary>
[Display(Name = "值")]
[Column("Value")]
[DataMember]
public string Value { get; set; }
/// <summary>
/// 备注
/// </summary>
[Display(Name = "备注")]
[Column("Note")]
[DataMember]
public string Note { get; set; }
/// <summary>
/// 其它信息
/// </summary>
[Display(Name = "其它信息")]
[Column("Other")]
[DataMember]
public string Other { get; set; }
/// <summary>
/// 排序
/// </summary>
[Display(Name = "排序")]
[Column("Sort")]
[DataMember]
public int Sort { get; set; }
/// <summary>
/// 0 正常 1 删除
/// </summary>
[Display(Name = "0 正常 1 删除")]
[Column("Status")]
[DataMember]
public int Status { get; set; }
/// <summary>
/// 标题_英语
/// </summary>
[Display(Name = "标题_英语")]
[Column("Title_en")]
[DataMember]
public string Title_en { get; set; }
/// <summary>
/// 标题_繁体中文
/// </summary>
[Display(Name = "标题_繁体中文")]
[Column("Title_zh")]
[DataMember]
public string Title_zh { get; set; }
public override string ToString()
{
return JSON.Serialize(this);
}
}
}