namespace Yw.Model { /// /// Dma点位绑定 /// public partial class DmaSiteBinding : BaseModel, System.ICloneable { /// /// /// public DmaSiteBinding() { } /// /// /// public DmaSiteBinding(DmaSiteBinding rhs) : base(rhs) { this.SiteID = rhs.SiteID; this.MeterID = rhs.MeterID; this.BindingTime = rhs.BindingTime; this.UnBindingTime = rhs.UnBindingTime; } /// /// /// public void Reset(DmaSiteBinding rhs) { this.ID = rhs.ID; this.SiteID = rhs.SiteID; this.MeterID = rhs.MeterID; this.BindingTime = rhs.BindingTime; this.UnBindingTime = rhs.UnBindingTime; } /// /// 点位id /// public long SiteID { get; set; } /// /// 仪表id /// public long MeterID { get; set; } /// /// 绑定时间 /// public DateTime BindingTime { get; set; } /// /// 解绑时间 /// public DateTime? UnBindingTime { get; set; } /// /// /// public DmaSiteBinding Clone() { return new DmaSiteBinding(this); } object ICloneable.Clone() { return Clone(); } } }