123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YLShipBuildLandMap.Entity.ViewModel.Build
- {
- public class DepOrServicePointView:BdDepartmentOrServicePoint
- {
- public Guid? BuildingId { get; set; }
- public string BuildingName { get; set; }
- public Guid? FloorId { get; set; }
- public string FloorName { get; set; }
- public string RoomName { get; set; }
- public string ImgUrl { get; set; }
- }
- public class DepOrServicePointRoomView
- {
- public Guid DepartmentOrServicePointId { get; set; }
- public Guid? FloorId { get; set; }
- public string RoomName { get; set; }
- public int? RoomSort { get; set; }
- }
- }
|