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_PLACE
|
{
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
public BASE_PLACE()
|
{
|
BASE_PLACE_VS_CONTAINER = new HashSet<BASE_PLACE_VS_CONTAINER>();
|
}
|
|
public int ID { get; set; }
|
|
[StringLength(50)]
|
public string PLACE { get; set; }
|
|
public int? ROW { get; set; }
|
|
public int? COL { get; set; }
|
|
public int? LAYER { get; set; }
|
|
/// <summary>
|
/// ÏïµÀ£¬Ò²¿ÉÒÔÀí½âΪ µÚ¼¸Ì¨¶Ñ¶â»ú£¬Ã¿Ì¨¶Ñ¶â»ú¸ºÔð4ÅÅ»õ¼Ü
|
/// </summary>
|
public int? SRMID { get; set; }
|
|
public int? ISFULL { get; set; }
|
|
public int? ISLOCK { get; set; }
|
|
public int? PLACETYPEID { get; set; }
|
|
public int? PLACELEVEL { get; set; }
|
|
public virtual BASE_PLACETYPE BASE_PLACETYPE { get; set; }
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
public virtual ICollection<BASE_PLACE_VS_CONTAINER> BASE_PLACE_VS_CONTAINER { get; set; }
|
}
|
}
|