namespace Yw.Application
{
///
///
///
public class HealthMultiEvaluationModelBindingDto
{
///
///
///
public HealthMultiEvaluationModelBindingDto() { }
///
///
///
public HealthMultiEvaluationModelBindingDto(Model.HealthMultiEvaluationModelBinding rhs)
{
this.ID = rhs.ID;
this.ModelID = rhs.ModelID;
this.EquipmentID = rhs.EquipmentID;
this.CronType = rhs.CronType;
this.CronParas = rhs.CronParas;
this.BindingTime = rhs.BindingTime;
this.UnBindingTime = rhs.UnBindingTime;
}
///
/// id
///
public long ID { get; set; }
///
/// 模型 id
///
public long ModelID { get; set; }
///
/// 设备id
///
public long EquipmentID { get; set; }
///
/// 计划类型
///
public eCronType CronType { get; set; }
///
/// 计划参数
///
public string CronParas { get; set; }
///
/// 绑定时间
///
public DateTime BindingTime { get; set; }
///
/// 解绑时间
///
public DateTime? UnBindingTime { get; set; }
}
}