DepOrServicePointView.cs 725 B

123456789101112131415161718192021222324
  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. }
  15. public class DepOrServicePointRoomView
  16. {
  17. public Guid DepartmentOrServicePointId { get; set; }
  18. public Guid? FloorId { get; set; }
  19. public string RoomName { get; set; }
  20. public int? RoomSort { get; set; }
  21. }
  22. }