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.
51 lines
1.5 KiB
51 lines
1.5 KiB
3 weeks ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace WMS_GIRAF_Interface.Entities;
|
||
|
|
||
|
[Table("STORAGE_MAIN")]
|
||
|
public class STORAGE_MAIN
|
||
|
{
|
||
|
[Column("STORAGE_ID")]
|
||
|
[Key]
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||
|
public int? STORAGE_ID { get; set; }
|
||
|
|
||
|
[Column("CELL_ID")]
|
||
|
public int? CELL_ID { get; set; }
|
||
|
|
||
|
[Column("STOCK_BARCODE")]
|
||
|
public string? STOCK_BARCODE { get; set; }
|
||
|
|
||
|
[Column("CELL_MODEL")]
|
||
|
public string? CELL_MODEL { get; set; }
|
||
|
[Column("LOTNUMBER")]
|
||
|
public string? LOTNUMBER { get; set; }
|
||
|
[Column("PopulationNumber")]
|
||
|
public string? PopulationNumber { get; set; }
|
||
|
[Column("FabricationDateTimeInUtc")]
|
||
|
public string? FabricationDateTimeInUtc { get; set; }
|
||
|
[Column("DryDateTimeInUtc")]
|
||
|
public string? DryDateTimeInUtc { get; set; }
|
||
|
[Column("OldDateTimeInUtc")]
|
||
|
public string? OldDateTimeInUtc { get; set; }
|
||
|
[Column("HdvDateTimeInUtc")]
|
||
|
public string? HdvDateTimeInUtc { get; set; }
|
||
|
[Column("IsPriority")]
|
||
|
public bool? IsPriority { get; set; }
|
||
|
[Column("IsBlocked")]
|
||
|
public bool? IsBlocked { get; set; }
|
||
|
[Column("STORAGE_LIST_QUANTITY")]
|
||
|
public int? STORAGE_LIST_QUANTITY { get; set; } = 1;
|
||
|
[Column("EntryTime")]
|
||
|
public string? EntryTime { get; set; }
|
||
|
[Column("STORAGE_REMARK")]
|
||
|
public string? STORAGE_REMARK { get; set; }
|
||
|
[Column("GOODS_ID")]
|
||
|
public int? GOODS_ID { get; set; }
|
||
|
[Column("requestNumber")]
|
||
|
public string? requestNumber { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
}
|