using System; using System.Collections.Generic; #nullable disable namespace YLShipBuildLandMap.Entity { public partial class BdBuilding { public BdBuilding() { BdBuildingFloor = new HashSet(); BdBuildingXyAxis = new HashSet(); } public Guid BuildingId { get; set; } public string Name { get; set; } public int? RecordStatus { get; set; } public DateTime? CreateTime { get; set; } public Guid? CreateUserId { get; set; } public Guid? ModifyUserId { get; set; } public DateTime? ModifyTime { get; set; } public virtual ICollection BdBuildingFloor { get; set; } public virtual ICollection BdBuildingXyAxis { get; set; } } }