DepOrServicePointView.cs 808 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.Build
  5. {
  6. public class DepOrServicePointView:BdDepartmentOrServicePoint
  7. {
  8. public Guid? BuildingId { get; set; }
  9. public string BuildingName { get; set; }
  10. public Guid? FloorId { get; set; }
  11. public string FloorName { get; set; }
  12. public string RoomName { get; set; }
  13. public string ImgUrl { get; set; }
  14. public int? Sort { get; set; }
  15. public int? FloorSort { get; set; }
  16. }
  17. public class DepOrServicePointRoomView
  18. {
  19. public Guid DepartmentOrServicePointId { get; set; }
  20. public Guid? FloorId { get; set; }
  21. public string RoomName { get; set; }
  22. public int? RoomSort { get; set; }
  23. }
  24. }