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.
38 lines
1.0 KiB
38 lines
1.0 KiB
2 weeks ago
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace WMS_GIRAF_Interface.Models;
|
||
|
|
||
|
public class GetStockListModel
|
||
|
{
|
||
|
|
||
|
public string STOCK_BARCODE { get; set; }
|
||
|
public string? LOTNUMBER { get; set; }
|
||
|
public string? CELL_CODE { get; set; }
|
||
|
public string? CELL_MODEL { get; set; }
|
||
|
public string? supportIdentifier { get; set; }
|
||
|
public bool? supportIsBlocked { get; set; }
|
||
|
public bool? IsBlocked { get; set; }
|
||
|
|
||
|
public bool? IsPriority { get; set; }
|
||
|
|
||
|
public string? PopulationNumber { get; set; }
|
||
|
|
||
|
public DateTime? DryDateTimeInUtc { get; set; }
|
||
|
|
||
|
public DateTime? DryDateTimeInLoc { get; set; }
|
||
|
|
||
|
public DateTime? OldDateTimeInUtc { get; set; }
|
||
|
|
||
|
public DateTime? OldDateTimeInLoc { get; set; }
|
||
|
|
||
|
public DateTime? HdvDateTimeInUtc { get; set; }
|
||
|
|
||
|
public DateTime? HdvDateTimeInLoc { get; set; }
|
||
|
|
||
|
public DateTime? FabricationDateTimeInUtc { get; set; }
|
||
|
|
||
|
public DateTime? FabricationDateTimeInLoc { get; set; }
|
||
|
|
||
|
public int? IsAccessible { get; set; }
|
||
|
|
||
|
}
|