namespace gpt_api.Core.Dtos.Entity
{
public class BaseEntity : PrimaryKey
{
///
/// 创建时间
///
public DateTime? createtime { get; set; }
///
/// 最近更新时间
///
public DateTime? updatetime { get; set; }
///
/// 是否删除
///
public bool? IsDeleted { get; set; } = false;
}
}