using IStation.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class LogicAreaLogicDto
{
///
///
///
public LogicAreaLogicDto() { }
///
///
///
public LogicAreaLogicDto(Model.LogicArea rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
this.CatalogID = rhs.CatalogID;
this.Name= rhs.Name;
this.TerminalId = rhs.TerminalId;
this.TagName= rhs.TagName;
this.UseStatus = rhs.UseStatus;
this.SortCode = rhs.SortCode;
this.Description= rhs.Description;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 类别标识
///
public long CatalogID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 终端标识
///
public string TerminalId { get; set; }
///
/// 标签
///
public string TagName { get; set; }
///
/// 使用状态
///
public eUseStatus UseStatus { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}