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.
61 lines
1.1 KiB
61 lines
1.1 KiB
3 years ago
|
using cd.dapper.extension;
|
||
|
using System;
|
||
|
|
||
|
namespace learun.iapplication
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 版 本 EasyCode EC管理后台
|
||
|
/// Copyright (c) 2019-present EC管理有限公司
|
||
|
/// 创建人:tobin
|
||
|
/// 日 期:2019.10.23
|
||
|
/// 描 述:常用字段
|
||
|
/// </summary>
|
||
|
[Table("lr_base_dbfield")]
|
||
|
public class DbFieldEntity
|
||
|
{
|
||
|
#region 实体成员
|
||
|
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[Key]
|
||
|
public string F_Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 列名
|
||
|
/// </summary>
|
||
|
public string F_Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 类型
|
||
|
/// </summary>
|
||
|
public string F_DataType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 说明
|
||
|
/// </summary>
|
||
|
public string F_Remark { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 字段长度
|
||
|
/// </summary>
|
||
|
public int? F_Length { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建日期
|
||
|
/// </summary>
|
||
|
public DateTime? F_CreateDate { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建人ID
|
||
|
/// </summary>
|
||
|
public string F_CreateUserId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建人名字
|
||
|
/// </summary>
|
||
|
public string F_CreateUserName { get; set; }
|
||
|
|
||
|
#endregion 实体成员
|
||
|
}
|
||
|
}
|