namespace iWareSda_QQJF.WCSNEW.EDM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class BASE_CONTAINER_VS_ITEM { public int ID { get; set; } public int? CONTAINERID { get; set; } public int? ITEMID { get; set; } public DateTime? UPDATETIME { get; set; } public int? ITEMNUM { get; set; } public int? ISBAD { get; set; } public int? INPLANID { get; set; } public int? OUTPLANID { get; set; } public int? ENABLE { get; set; } [StringLength(50)] public string BADBYFACTORY { get; set; } public int? INTYPEID { get; set; } public decimal? GETWEIGHT { get; set; } public decimal? TOTALWEIGHT { get; set; } [StringLength(50)] public string CVICODE { get; set; } public int? CREATEUSERID { get; set; } public virtual BASE_CONTAINER BASE_CONTAINER { get; set; } public virtual BASE_INTYPE BASE_INTYPE { get; set; } public virtual BASE_ITEM BASE_ITEM { get; set; } public virtual ORDER_INORDER ORDER_INORDER { get; set; } public virtual ORDER_OUTORDER ORDER_OUTORDER { get; set; } } }