42 lines
1.4 KiB
C#
42 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WorkFlowCheck.DL.Interfaces;
|
|
|
|
namespace WorkFlowCheck.DL.Entities
|
|
{
|
|
public class CheckListTemplateRow : ISoftDeletableEntity, IAuditableEntity
|
|
{
|
|
public int Id { get; set; }
|
|
public int RowIndex { get; set; }
|
|
public int CheckListTemplateHeaderId { get; set; }
|
|
public virtual CheckListTemplateHeader CheckListTemplateHeader { get; set; }
|
|
public int EquipmentId { get; set; }
|
|
public virtual Equipment Equipment { get; set; }
|
|
public int CheckPointId { get; set; }
|
|
public virtual CheckPoint CheckPoint { 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!;
|
|
|
|
public bool IsDeleted { get; set; }
|
|
public DateTime LastModAt { get; set; }
|
|
public string LastModBy { get; set; } = null!;
|
|
public DateTime CreatedAt { get; set; }
|
|
public string CreatedBy { get; set; } = null!;
|
|
|
|
}
|
|
}
|