namespace Yw.Entity
|
{
|
|
/// <summary>
|
/// 维修单
|
/// </summary>
|
[SugarTable("repair_task_form")]
|
public class RepairTaskForm : BaseTraceEntity, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public RepairTaskForm() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public RepairTaskForm(RepairTaskForm rhs) : base(rhs)
|
{
|
this.EquipmentID = rhs.EquipmentID;
|
this.RequestID = rhs.RequestID;
|
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;
|
this.RepairUserID = rhs.RepairUserID;
|
this.RepairUserName = rhs.RepairUserName;
|
}
|
|
/// <summary>
|
/// 设备id
|
/// </summary>
|
public long EquipmentID { get; set; }
|
|
/// <summary>
|
/// 报修单标识
|
/// </summary>
|
public long? RequestID { get; set; }
|
|
/// <summary>
|
/// 表单号
|
/// </summary>
|
[SugarColumn(Length = 500, IsNullable = true)]
|
public string FormNo { get; set; }
|
|
/// <summary>
|
/// 表单名称
|
/// </summary>
|
[SugarColumn(Length = 500, IsNullable = true)]
|
public string FormName { get; set; }
|
|
/// <summary>
|
/// 表单状态
|
/// </summary>
|
public int FormStatus { get; set; }
|
|
/// <summary>
|
/// 问题编码
|
/// </summary>
|
[SugarColumn(Length = 500, IsNullable = true)]
|
public string Faq { get; set; }
|
|
/// <summary>
|
/// 问题描述
|
/// </summary>
|
[SugarColumn(Length = 500, IsNullable = true)]
|
public string Question { get; set; }
|
|
/// <summary>
|
/// 紧急程度
|
/// </summary>
|
public int Urgency { get; set; }
|
|
/// <summary>
|
/// 地址
|
/// </summary>
|
[SugarColumn(Length = 500, IsNullable = true)]
|
public string Address { get; set; }
|
|
/// <summary>
|
/// 定位
|
/// </summary>
|
[SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
|
public string Location { get; set; }
|
|
/// <summary>
|
/// 维修用户id
|
/// </summary>
|
public long? RepairUserID { get; set; }
|
|
/// <summary>
|
/// 维修用户名称
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true)]
|
public string RepairUserName { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public RepairTaskForm Clone()
|
{
|
return (RepairTaskForm)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
|
|
}
|
|
}
|