39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
namespace LaaProduction.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; }
|
|
}
|
|
}
|