using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class AddSignalUnitInput
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 监测单元标识
///
public long MonitorUnitID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 信号类型
///
public string SignalType { get; set; }
///
/// 标签列表
///
public List Flags { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}