using IStation.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static IStation.Model.Station; namespace IStation.Application { /// /// /// public class StationLogicDto { /// /// /// public StationLogicDto() { } /// /// /// public StationLogicDto(Model.Station rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.Name = rhs.Name; this.Type = rhs.Type; this.StartMonitorDay = rhs.StartMonitorDay; this.DesignParas = rhs.DesignParas; this.MonitorStatus = rhs.MonitorStatus; this.Address = rhs.Address; this.TerminalId = rhs.TerminalId; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.UseStatus= rhs.UseStatus; this.Description = rhs.Description; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 开始监控日期 /// public DateTime? StartMonitorDay { get; set; } /// /// 设计参数 /// public DesignParameters DesignParas { get; set; } /// /// 监测状态 /// public eMonitorStatus MonitorStatus { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 终端标识 /// public string TerminalId { get; set; } /// /// 标签名称 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 使用状态 /// public eUseStatus UseStatus { get; set; } /// /// 说明 /// public string Description { get; set; } } }