41 lines
995 B
C#
41 lines
995 B
C#
using JNPF.Common.Contracts;
|
||
using JNPF.Extras.DatabaseAccessor.SqlSugar.Models;
|
||
using SqlSugar;
|
||
|
||
namespace JNPF.Extend.Entitys;
|
||
|
||
/// <summary>
|
||
/// 大数据测试
|
||
/// 版 本:V3.2
|
||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||
/// 作 者:JNPF开发平台组
|
||
/// 日 期:2021-06-01.
|
||
/// </summary>
|
||
[SugarTable("EXT_BIGDATA")]
|
||
public class BigDataEntity : EntityBase<string>
|
||
{
|
||
/// <summary>
|
||
/// 编码.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_ENCODE")]
|
||
public string? EnCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 名称.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_FULLNAME")]
|
||
public string? FullName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 描述.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_DESCRIPTION")]
|
||
public string? Description { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建时间.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_CREATORTIME")]
|
||
public DateTime? CreatorTime { get; set; }
|
||
}
|