using IStation.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static IStation.Model.DataDockingProblem; namespace IStation.Application { /// /// /// public class DataDockingProblemDto { /// /// /// public DataDockingProblemDto() { } /// /// /// public DataDockingProblemDto(Model.DataDockingProblem rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.ConfigureID = rhs.ConfigureID; this.Name = rhs.Name; this.Interruption = rhs.Interruption; this.HandleMethod = rhs.HandleMethod; this.HandleParas = rhs.HandleParas; this.SortCode = rhs.SortCode; this.UseStatus = rhs.UseStatus; this.Description = rhs.Description; this.CreateUserID = rhs.CreateUserID; this.CreateTime = rhs.CreateTime; this.UpdateTime = rhs.UpdateTime; this.UpdateUserID = rhs.UpdateUserID; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 配置id /// public long ConfigureID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 中断时间(秒) /// public int Interruption { get; set; } /// /// 对接方式 /// public eHandleMethod HandleMethod { get; set; } /// /// 配置参数 /// public string HandleParas { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 使用状态 /// public eUseStatus UseStatus { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 创建用户标识 /// public long CreateUserID { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 更新用户标识 /// public long? UpdateUserID { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } } }