initial add
This commit is contained in:
41
Fab2ApprovalSystem/ViewModels/LotDispositionViewModel.cs
Normal file
41
Fab2ApprovalSystem/ViewModels/LotDispositionViewModel.cs
Normal file
@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
namespace Fab2ApprovalSystem.ViewModels
|
||||
{
|
||||
public class IssuesViewModel
|
||||
{
|
||||
|
||||
[Display(Name = "Document Type")]
|
||||
public string DocumentType { get; set; }
|
||||
[Display(Name = "Sub Category")]
|
||||
public string SubDoc { get; set; }
|
||||
[Display(Name = "Issue#")]
|
||||
public int IssueID { get; set; }
|
||||
public int DocID { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string IssueDescription { get; set; }
|
||||
public string LotNos { get; set; }
|
||||
public DateTime? IssueDate { get; set; }
|
||||
[Display(Name = "Submit Date")]
|
||||
[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy}")]
|
||||
public DateTime? SubmitedDate { get; set; }
|
||||
public DateTime? CloseDate { get; set; }
|
||||
public string Originator { get; set; }
|
||||
public string ScrapDescription { get; set; }
|
||||
public string PendingApprovers { get; set; }
|
||||
public int ItemStatus { get; set; }
|
||||
|
||||
public DateTime? ExpirationDate { get; set; }
|
||||
[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy}")]
|
||||
public DateTime? ExtensionDate { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user