You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
3 weeks ago
|
using SqlSugar;
|
||
|
using System;
|
||
|
|
||
|
namespace ReZero.SuperAPI
|
||
|
{
|
||
|
public class DbBase:IDeleted
|
||
|
{
|
||
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
public long Id { get; set; }
|
||
|
public int SortId { get; set; }
|
||
|
[SugarColumn(IsOnlyIgnoreUpdate =true,InsertServerTime =true)]
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
public string? Creator { get; set; } = "-";
|
||
|
public long CreatorId { get; set; }
|
||
|
[SugarColumn(UpdateServerTime =true,IsNullable =true,IsOnlyIgnoreInsert =true)]
|
||
|
public DateTime UpdateTime { get; set; }
|
||
|
[SugarColumn(IsNullable = true)]
|
||
|
public string? Modifier { get; set; }
|
||
|
[SugarColumn(IsNullable = true)]
|
||
|
public string? ModifierId { get; set; }
|
||
|
[SugarColumn(IsNullable = true)]
|
||
|
public string? LanguageKey { get; set; }
|
||
|
public bool IsDeleted { get; set; }
|
||
|
[SugarColumn(IsNullable =true)]
|
||
|
public string? EasyDescription { get; set; }
|
||
|
public bool IsInitialized { get; set; }
|
||
|
[SugarColumn(IsNullable =true)]
|
||
|
public bool? IsAttributeMethod { get; set; }
|
||
|
}
|
||
|
|
||
|
}
|