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.
113 lines
3.3 KiB
113 lines
3.3 KiB
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace EFCoreDatabase.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("STORAGE_REMARK")]
|
|
public string STORAGE_REMARK { get; set; }
|
|
/// <summary>
|
|
/// 托盘重量
|
|
/// </summary>
|
|
[Column("WEIGHT_PALLET")]
|
|
public string WEIGHT_PALLET { get; set; }
|
|
/// <summary>
|
|
/// PG CODE
|
|
/// </summary>
|
|
[Column("PG_CODE")]
|
|
public string PG_CODE { get; set; }
|
|
/// <summary>
|
|
/// 传输唯一号码
|
|
/// </summary>
|
|
[Column("TRANSACTION_NUMBER")]
|
|
public string TRANSACTION_NUMBER { get; set; }
|
|
/// <summary>
|
|
/// 桶号
|
|
/// </summary>
|
|
[Column("BUCKET_NUMBER")]
|
|
public string BUCKET_NUMBER { get; set; }
|
|
/// <summary>
|
|
/// 桶组号
|
|
/// </summary>
|
|
[Column("BUCKET_GROUP")]
|
|
public string BUCKET_GROUP { get; set; }
|
|
/// <summary>
|
|
/// OperationRequestID
|
|
/// </summary>
|
|
[Column("OperationRequestID")]
|
|
public string OperationRequestID { get; set; }
|
|
/// <summary>
|
|
/// OperationToExecuteID
|
|
/// </summary>
|
|
[Column("OperationToExecuteID")]
|
|
public string OperationToExecuteID { get; set; }
|
|
/// <summary>
|
|
/// VirtualNameMachinePalletizer
|
|
/// </summary>
|
|
[Column("VirtualNameMachinePalletizer")]
|
|
public string VirtualNameMachinePalletizer { get; set; }
|
|
/// <summary>
|
|
/// MFDCode
|
|
/// </summary>
|
|
[Column("MFDCode")]
|
|
public string MFDCode { get; set; }
|
|
/// <summary>
|
|
/// MATIND
|
|
/// </summary>
|
|
[Column("MATIND")]
|
|
public string MATIND { get; set; }
|
|
/// <summary>
|
|
/// NIP
|
|
/// </summary>
|
|
[Column("NIP")]
|
|
public string NIP { get; set; }
|
|
/// <summary>
|
|
/// IMP
|
|
/// </summary>
|
|
[Column("IMP")]
|
|
public string IMP { get; set; }
|
|
/// <summary>
|
|
/// ItemIdentification
|
|
/// </summary>
|
|
[Column("ItemIdentification")]
|
|
public string ItemIdentification { get; set; }
|
|
/// <summary>
|
|
/// ItemTraceability
|
|
/// </summary>
|
|
[Column("ItemTraceability")]
|
|
public string ItemTraceability { get; set; }
|
|
/// <summary>
|
|
/// ItemHdvDate
|
|
/// </summary>
|
|
[Column("ItemHdvDate")]
|
|
public string ItemHdvDate { get; set; }
|
|
/// <summary>
|
|
/// ItemHdvTime
|
|
/// </summary>
|
|
[Column("ItemHdvTime")]
|
|
public string ItemHdvTime { get; set; }
|
|
/// <summary>
|
|
/// ItemFabricationDate
|
|
/// </summary>
|
|
[Column("ItemFabricationDate")]
|
|
public string ItemFabricationDate { get; set; }
|
|
/// <summary>
|
|
/// ItemFabricationTime
|
|
/// </summary>
|
|
[Column("ItemFabricationTime")]
|
|
public string ItemFabricationTime { get; set; }
|
|
|
|
}
|
|
}
|