using IStation.Model.Repair;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class MyRepairRequestFormMobileDto
{
///
///
///
public MyRepairRequestFormMobileDto() { }
///
///
///
public MyRepairRequestFormMobileDto(Model.RepairRequestForm rhs,string productName=null)
{
this.ID = rhs.ID;
this.FormNo = rhs.FormNo;
this.FormName = rhs.FormName;
this.FormStatus = rhs.FormStatus;
this.Faq = rhs.Faq;
this.Urgency = rhs.Urgency;
this.Address = rhs.Address;
this.CreateTime = rhs.CreateTime;
this.ProductName = productName;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 表单号
///
public string FormNo { get; set; }
///
/// 表单名称
///
public string FormName { get; set; }
///
/// 表单状态
///
public eRequestStatus FormStatus { get; set; }
///
/// 设备名称
///
public string ProductName { get; set; }
///
/// 问题编码
///
public string Faq { get; set; }
///
/// 紧急程度
///
public eUrgency Urgency { get; set; }
///
/// 地址
///
public string Address { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}
}