namespace yunneiWCS.ORM
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("Wms_outInStockRecord_Details_V2_Mes")]
|
public partial class Wms_outInStockRecord_Details_V2_Mes
|
{
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public long ID { get; set; }
|
|
public long? mainId { get; set; }
|
|
[StringLength(100)]
|
public string containerCode { get; set; }
|
|
[StringLength(50)]
|
public string productCode { get; set; }
|
|
[StringLength(50)]
|
public string productName { get; set; }
|
|
[StringLength(50)]
|
public string serialNumber { get; set; }
|
|
[StringLength(128)]
|
public string Remark { get; set; }
|
|
[StringLength(128)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
[StringLength(128)]
|
public string LastModifier { get; set; }
|
|
public DateTime? LastModifyTime { get; set; }
|
}
|
}
|