DepOrServicePointView.cs 682 B

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