using System; using System.Collections.Generic; #nullable disable namespace YLShipBuildLandMap.Entity { public partial class BdDepartmentOrServicePointBmBuildingFloorRoom { public Guid DepartmentOrServicePointId { get; set; } public Guid BuildingFloorRoomId { get; set; } public virtual BdBuildingFloorRoom BuildingFloorRoom { get; set; } public virtual BdDepartmentOrServicePoint DepartmentOrServicePoint { get; set; } } }