BdBuilding.cs 830 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class BdBuilding
  7. {
  8. public BdBuilding()
  9. {
  10. BdBuildingFloor = new HashSet<BdBuildingFloor>();
  11. BdBuildingXyAxis = new HashSet<BdBuildingXyAxis>();
  12. }
  13. public Guid BuildingId { get; set; }
  14. public string Name { get; set; }
  15. public int? RecordStatus { get; set; }
  16. public DateTime? CreateTime { get; set; }
  17. public Guid? CreateUserId { get; set; }
  18. public Guid? ModifyUserId { get; set; }
  19. public DateTime? ModifyTime { get; set; }
  20. public virtual ICollection<BdBuildingFloor> BdBuildingFloor { get; set; }
  21. public virtual ICollection<BdBuildingXyAxis> BdBuildingXyAxis { get; set; }
  22. }
  23. }