namespace Yw.Entity { /// /// 报修单 /// [SugarTable("repair_request_form")] public class RepairRequestForm : BaseTraceEntity, System.ICloneable { /// /// /// public RepairRequestForm() { } /// /// /// public RepairRequestForm(RepairRequestForm rhs) : base(rhs) { this.EquipmentID = rhs.EquipmentID; this.FormNo = rhs.FormNo; this.FormName = rhs.FormName; this.FormStatus = rhs.FormStatus; this.Faq = rhs.Faq; this.Question = rhs.Question; this.Urgency = rhs.Urgency; this.Address = rhs.Address; this.Location = rhs.Location; } /// /// 设备id /// public long EquipmentID { get; set; } /// /// 表单号 /// public string FormNo { get; set; } /// /// 表单名称 /// public string FormName { get; set; } /// /// 表单状态 /// public int FormStatus { get; set; } /// /// 问题编码 /// public string Faq { get; set; } /// /// 问题描述 /// public string Question { get; set; } /// /// 紧急程度 /// public int Urgency { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 定位 /// public string Location { get; set; } /// /// /// public RepairRequestForm Clone() { return (RepairRequestForm)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }