This commit is contained in:
2025-07-02 20:12:08 +08:00
parent 27b0099074
commit a6729f3c10
6 changed files with 95 additions and 25 deletions

View File

@@ -20,10 +20,18 @@ namespace MyCode.Project.Domain.Model
/// Default:
/// Nullable:False
/// </summary>
public string Request {get;set;}
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int Id {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string Request {get;set;}
/// <summary>
/// Desc:运行状态 0=未运行 1=运行中 2=运行成功 3=失败
/// Default:0
/// Nullable:False
/// </summary>
@@ -36,5 +44,12 @@ namespace MyCode.Project.Domain.Model
/// </summary>
public string ExceptionInfo {get;set;}
/// <summary>
/// Desc:刷新登录参数的时间
/// Default:DateTime.Now
/// Nullable:True
/// </summary>
public DateTime? EditTime {get;set;}
}
}