using System;
using SqlSugar;
namespace WMS.Entity
{
public class BaseEntity
{
///
/// 主键ID 自增
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 创建日期
///
public DateTime CreateTime { get; set; } = DateTime.Now;
///
/// 更新日期
///
public DateTime? UpdateTime { get; set; }
///
/// 是否删除
///
public string IsDel { get; set; } = "0";
///
/// 创建人
///
public int CreateUser { get; set; }
///
/// 更新人
///
public int? UpdateUser { get; set; }
}
}