namespace IStation.Application.SZJT
{
///
///
///
public class RepairMapStatusMobileDto
{
///
///
///
public RepairMapStatusMobileDto() { }
///
///
///
public RepairMapStatusMobileDto(Yw.Model.RepairRequestForm rhs)
{
this.FormType = Yw.Repair.DataType.RepairRequestForm;
this.FormID = rhs.ID;
this.FormNo = rhs.FormNo;
this.FormName = rhs.FormName;
this.FormStatus = (int)rhs.FormStatus;
this.Urgency = rhs.Urgency;
this.Faq = rhs.Faq;
this.Question = rhs.Question;
this.CreateUserID = rhs.CreateUserID;
this.CreateTime = rhs.CreateTime;
this.CreateUserName = rhs.CreateUserName;
}
///
///
///
public RepairMapStatusMobileDto(Yw.Model.RepairTaskForm rhs)
{
this.FormType = Yw.Repair.DataType.RepairTaskForm;
this.FormID = rhs.ID;
this.FormNo = rhs.FormNo;
this.FormName = rhs.FormName;
this.FormStatus = (int)rhs.FormStatus;
this.Urgency = rhs.Urgency;
this.Faq = rhs.Faq;
this.Question = rhs.Question;
this.CreateUserID = rhs.CreateUserID;
this.CreateTime = rhs.CreateTime;
this.CreateUserName = rhs.CreateUserName;
}
///
/// 工单类型
///
public string FormType { get; set; }
///
/// 工单id
///
public long FormID { get; set; }
///
/// 工单号
///
public string FormNo { get; set; }
///
/// 工单名称
///
public string FormName { get; set; }
///
/// 工单状态
///
public int FormStatus { get; set; }
///
/// 紧急程度
///
public Yw.Repair.eUrgency Urgency { get; set; }
///
/// 问题编码
///
public string Faq { get; set; }
///
/// 问题描述
///
public string Question { get; set; }
///
/// 创建人id
///
public long CreateUserID { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 创建人名称
///
public string CreateUserName { get; set; }
}
}