You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace WMS_GIRAF_Interface.Entities;
|
|
|
|
[Table("MANAGE_DETAIL")]
|
|
public class MANAGE_DETAIL
|
|
{
|
|
[Column("requestNumber")]
|
|
|
|
public string? requestNumber { get; set; }
|
|
|
|
[Column("poolNumber")]
|
|
public string? poolNumber { get; set; }
|
|
|
|
[Column("lotNumber")]
|
|
public string? lotNumber { get; set; }
|
|
|
|
[Column("populationNumber")]
|
|
public string? populationNumber { get; set; }
|
|
|
|
[Column("destinationId")]
|
|
public string? destinationId { get; set; }
|
|
|
|
[Column("targetOutputDateInUtc")]
|
|
public DateTime? targetOutputDateInUtc { get; set; }
|
|
|
|
[Column("keepRequestInMemoryEvenIfMechanicalIssue")]
|
|
public bool? keepRequestInMemoryEvenIfMechanicalIssue { get; set; }
|
|
|
|
[Column("keepRequestInMemoryEvenIfLackOfProductIssue")]
|
|
public bool? KeepRequestInMemoryEvenIfLackOfProductIssue { get; set; }
|
|
|
|
[Column("requestStatus")]
|
|
public int? requestStatus { get; set; }
|
|
|
|
[Column("errorText")]
|
|
public string? errorText { get; set; }
|
|
|
|
}
|