using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// /// public class AddMonitorPointMappingInput { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 测点标识 /// public long MonitorPointID { get; set; } /// /// 对象类型 /// public string ObjectType { get; set; } /// /// 对象标识 /// public long ObjectID { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 关联参数 /// public string AccordParas { get; set; } } }