123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace YLShipBuildLandMap.Entity
- {
- public partial class BdBuilding
- {
- public BdBuilding()
- {
- BdBuildingFloor = new HashSet<BdBuildingFloor>();
- BdBuildingXyAxis = new HashSet<BdBuildingXyAxis>();
- }
- 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> BdBuildingFloor { get; set; }
- public virtual ICollection<BdBuildingXyAxis> BdBuildingXyAxis { get; set; }
- }
- }
|