添加optuserType
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2025-03-13 14:36:37 +08:00
parent f9327c56db
commit bc19ead2f5
2 changed files with 4 additions and 1 deletions
@@ -232,6 +232,8 @@ namespace IRaCIS.Application.Contracts
{
public int DoctorTrialState { get; set; }
public string OptUserName { get; set; } = string.Empty;
public int? OptUserType { get; set; }
public DateTime? OptTime { get; set; }
public string? OptTimeStr => OptTime?.ToString("yyyy-MM-dd HH:mm:ss");
@@ -265,7 +267,7 @@ namespace IRaCIS.Application.Contracts
public string OptUserName { get; set; } = String.Empty;
public DateTime? OptTime { get; set; }
public int OptUserType { get; set; }
}