RoomView.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.Build
  5. {
  6. public class RoomView : BdBuildingFloorRoom
  7. {
  8. public string FloorName { get; set; }
  9. public int? FloorSort { get; set; }
  10. public string BuildingName { get; set; }
  11. public Guid? BuildingId { get; set; }
  12. }
  13. public class RoomDepOrServiceView
  14. {
  15. public string BuildingName { get; set; }
  16. public Guid? BuildingId { get; set; }
  17. public Guid BuildingFloorRoomId { get; set; }
  18. public string FloorName { get; set; }
  19. public int? FloorSort { get; set; }
  20. public Guid? BuildingFloorId { get; set; }
  21. public string RoomName { get; set; }
  22. public int? Sort { get; set; }
  23. public string DepartmentOrServiceName { get; set; }
  24. public Guid? DepartmentOrServicePointId { get; set; }
  25. public string OpenTime { get; set; }
  26. public string ContactType { get; set; }
  27. public string Description { get; set; }
  28. public string ImgUrl { get; set; }
  29. }
  30. }