using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// /// public class ObjectMapInfoDto { /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 对象类型 /// public string ObjectType { get; set; } /// /// 子类型 /// public string SubType { get; set; } /// /// 对象标识 /// public long ObjectID { get; set; } /// /// 对象名称 /// public string ObjectName { get; set; } /// /// 目的 /// public string Purpose { get; set; } /// /// 地图种类 /// public string Kind { get; set; } /// /// 地图形状 /// public string Shape { get; set; } /// /// 地图位置 /// public string Position { get; set; } } }