using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace CoreCms.Net.Model.Entities.baseModel
|
{
|
/// <summary>
|
/// 百分兵法新增数据库基础模型
|
/// </summary>
|
public class BFBaseModel
|
{
|
/// <summary>
|
/// 建立时间
|
/// </summary>
|
[SugarColumn(ColumnDescription = "建立时间" ,IsNullable =true)]
|
public DateTime? createTime { get; set; }
|
|
/// <summary>
|
/// 修改时间
|
/// </summary>
|
[SugarColumn(ColumnDescription = "修改时间", IsNullable = true)]
|
public DateTime? upDataTime { get; set; }
|
|
/// <summary>
|
/// 创建人
|
/// </summary>
|
[SugarColumn(ColumnDescription = "创建人", IsNullable = true)]
|
public string createBy { get; set; }
|
|
/// <summary>
|
/// 修改人
|
/// </summary>
|
[SugarColumn(ColumnDescription = "修改人", IsNullable = true)]
|
public string upDataBy { get; set; }
|
/// <summary>
|
/// 删除标志
|
/// </summary>
|
[SugarColumn(ColumnDescription = "删除标志")]
|
public bool isdelete { get; set; }= false;
|
}
|
}
|