using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ChangKeTec.Wms.Models.Wms { public partial class TB_CONTAINER_INOUT { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int UID { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string VendId { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string CantainerType { get; set; } public int UpdateQty { get; set; } public DateTime UpdateTime { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string OperName { get; set; } [StringLength(500)] public string Remark { get; set; } } }