using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 管路绑定 /// public class BindingPipeLineInput { /// /// 公司标识 /// public long CorpID { get; set; } /// /// 管路标识 /// public long PipeLineID { get; set; } /// /// 绑定类型 /// public string BindingType { get; set; } /// /// 绑定标识 /// public long BindingID { get; set; } } }