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 int? Sort { get; set; } public int? FloorSort { 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; } } }