using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 管路绑定 dto /// public class PipeLineBindingDto { /// /// 标识 /// public long ID { get; set; } /// /// 公司标识 /// public long CorpID { get; set; } /// /// 管路标识 /// public long PipeLineID { get; set; } /// /// 绑定类型 /// public string BindingType { get; set; } /// /// 绑定标识 /// public long BindingID { get; set; } /// /// 绑定时间 /// public DateTime BindingTime { get; set; } /// /// 解绑时间 /// public DateTime? UnBindingTime { get; set; } } }