API és endpoint kiegészítése
This commit is contained in:
@@ -7,5 +7,7 @@ namespace WorkFlowCheck.Common.DTO
|
||||
public int Id { get; set; }
|
||||
public string ShortName { get; set; } = null!;
|
||||
public string Description { get; set; } = null!;
|
||||
|
||||
public required ICollection<CheckListTemplateRowDTO> CheckListTemplateRowDTO { get; set; } = new List<CheckListTemplateRowDTO>();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,27 @@ namespace WorkFlowCheck.Common.DTO
|
||||
public class CheckListTemplateRowDTO
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string ShortName { get; set; } = null!;
|
||||
public string Description { get; set; } = null!;
|
||||
public int RowIndex { get; set; }
|
||||
public int CheckListTemplateHeaderId { get; set; }
|
||||
|
||||
public int EquipmentId { get; set; }
|
||||
|
||||
public int CheckPointId { get; set; }
|
||||
|
||||
public string OperationDescription { get; set; } = null!;
|
||||
|
||||
/// <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!;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user