Files
laatzen/LaaProductionWeb/LaaProductionWeb.Services/Models/ProductionApproval.cs
T
Stoyan Zlatev cf9dfe1915 Production Approvals,
sql client refactoring
2023-04-14 16:45:41 +02:00

39 lines
1.0 KiB
C#

namespace LaaProductionWeb.Services.Models
{
using System;
using System.ComponentModel.DataAnnotations;
public class ProductionApproval
{
public int Id { get; set; }
public int? OrderNr { get; set; }
public int? PcbId { get; set; }
public bool SkipRadioCheck { get; set; }
public int? OverrideFwCheck { get; set; }
public int? OverrideLutCheck { get; set; }
public int? RequiredLifeTimeYearsAssembly { get; set; }
public int? RequiredLifeTimeYearsShipping { get; set; }
public DateTime? KitronProductionDate { get; set; }
public double? MaxDrainedBatteryLoadPercent { get; set; }
public int? MaxStorageMonths { get; set; }
public DateTime ApprovalDate { get; set; }
public string ApproverName { get; set; }
[Required]
[MinLength(10)]
public string ApprovalComment { get; set; }
}
}