using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 添加建筑物 /// public class AddBuildingInput { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 所属类型 /// public string BelongType { get; set; } /// /// 所属标识 /// public long BelongID { get; set; } /// /// 建筑类型 /// public string Type { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 高度 /// public double? Height { get; set; } /// /// 层数 /// public int? TotalFloors { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 终端标识 /// public string TerminalId { get; set; } /// /// 标签 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }