Kis adatbázis és miegymás

This commit is contained in:
2025-02-19 14:12:39 +01:00
parent 872e7b3a4f
commit 2f0b9e1452
22 changed files with 1711 additions and 92 deletions
@@ -18,11 +18,24 @@ namespace WorkFlowCheck.DL.Entities
public int CheckPointId { get; set; }
public virtual CheckPoint CheckPoint { get; set; }
public string OperationDescription { get; set; } = null!;
public bool IsDeleted { get; set; }
/// <summary>
///
/// I-N (Igen, nem)
/// P (Fénykép készítése)
/// SI-N (Sárga igen,fehér nem)
/// I-SN (Fehér igen, sárga nem)
/// PI-N (Piros igen,fehér nem)
/// I-PN (Fehér igen, piros nem)
///
/// </summary>
public string AnswerType { get; set; } = null!;
public bool IsDeleted { get; set; }
public DateTime LastModAt { get; set; }
public string LastModBy { get; set; }
public string LastModBy { get; set; } = null!;
public DateTime CreatedAt { get; set; }
public string CreatedBy { get; set; }
public string CreatedBy { get; set; } = null!;
}
}