Created approval reminder worker

This commit is contained in:
Chase Tucker
2024-09-09 10:00:49 -07:00
parent 0fdf8179e1
commit b9b0299d3f
13 changed files with 507 additions and 5 deletions

View File

@ -0,0 +1,29 @@
using FabApprovalWorkerService.Utilities;
namespace FabApprovalWorkerService.Models;
public class MRB {
public int MRBNumber { get; set; }
public int OriginatorID { get; set; }
public string Title { get; set; } = "";
public DateTime SubmittedDate { get; set; } = DateTimeUtilities.MIN_DT;
public DateTime CloseDate { get; set; } = DateTimeUtilities.MAX_DT;
public DateTime CancelDate { get; set; } = DateTimeUtilities.MAX_DT;
public DateTime ApprovalDate { get; set; } = DateTimeUtilities.MAX_DT;
public string IssueDescription { get; set; } = "";
public int NumberOfLotsAffected { get; set; }
public int Val { get; set; }
public bool CustomerImpacted { get; set; } = false;
public string CustomerImpactedName { get; set; } = "";
public string Department { get; set; } = "";
public string Process { get; set; } = "";
public int RMANo { get; set; }
public string PCRBNo { get; set; } = "";
public bool SpecsImpacted { get; set; } = false;
public int ProcessECNNumber { get; set; }
public bool TrainingRequired { get; set; } = false;
public required int StageNo { get; set; }
public required string Status { get; set; }
public string Tool { get; set; } = "";
public string Category { get; set; } = string.Empty;
}