using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 机泵简单传输对象 /// public class DemoEnginePumpSimpleDto { /// /// /// public DemoEnginePumpSimpleDto() { } /// /// /// public DemoEnginePumpSimpleDto(Model.Product rhs) { this.ID = rhs.ID; this.NO = rhs.NO; this.Name = rhs.Name; this.Code = rhs.Code; this.Specification = rhs.Specification; this.Address = rhs.Address; 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 string NO { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 型号 /// public string Code { get; set; } /// /// 规格 /// public string Specification { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 终端标识 /// public string TerminalId { get; set; } /// /// 标签 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 使用状态 /// public Model.Product.eUseStatus UseStatus { get; set; } /// /// 说明 /// public string Description { get; set; } } }