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