You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
776 B
40 lines
776 B
using cd.dapper.extension;
|
|
|
|
namespace learun.iapplication
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.10.22
|
|
/// 描 述:语言映射
|
|
/// </summary>
|
|
[Table("lr_lg_map")]
|
|
public class LGMapEntity
|
|
{
|
|
#region 实体成员
|
|
|
|
/// <summary>
|
|
/// 主键ID
|
|
/// </summary>
|
|
[Key]
|
|
public string F_Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 显示内容
|
|
/// </summary>
|
|
public string F_Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编码(系统自动产生,作为关联项)
|
|
/// </summary>
|
|
public string F_Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对应语言显示编码
|
|
/// </summary>
|
|
public string F_TypeCode { get; set; }
|
|
|
|
#endregion 实体成员
|
|
}
|
|
}
|