using IStation.Model.Repair;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Model
|
{
|
/// <summary>
|
/// 报修日志
|
/// </summary>
|
public class RepairRequestLog:System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public RepairRequestLog() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public RepairRequestLog(RepairRequestLog rhs)
|
{
|
this.ID= rhs.ID;
|
this.CorpID= rhs.CorpID;
|
this.FormID = rhs.FormID;
|
this.OperateType = rhs.OperateType;
|
this.OperateContent = rhs.OperateContent;
|
this.OperateTime = rhs.OperateTime;
|
this.OperateUserID = rhs.OperateUserID;
|
this.OperateNote = rhs.OperateNote;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public void Reset(RepairRequestLog rhs)
|
{
|
this.ID = rhs.ID;
|
this.CorpID = rhs.CorpID;
|
this.FormID = rhs.FormID;
|
this.OperateType = rhs.OperateType;
|
this.OperateContent = rhs.OperateContent;
|
this.OperateTime = rhs.OperateTime;
|
this.OperateUserID = rhs.OperateUserID;
|
this.OperateNote= rhs.OperateNote;
|
}
|
|
/// <summary>
|
/// 标识
|
/// </summary>
|
public long ID { get; set; }
|
|
/// <summary>
|
/// 客户标识
|
/// </summary>
|
public long CorpID { get; set; }
|
|
/// <summary>
|
/// 表单标识
|
/// </summary>
|
public long FormID { get; set; }
|
|
/// <summary>
|
/// 操作类型
|
/// </summary>
|
public eRequestOperateType OperateType { get; set; }
|
|
/// <summary>
|
/// 操作内容
|
/// </summary>
|
public string OperateContent { get; set; }
|
|
/// <summary>
|
/// 操作时间
|
/// </summary>
|
public DateTime OperateTime { get; set; }
|
|
/// <summary>
|
/// 操作人标识
|
/// </summary>
|
public long OperateUserID { get; set; }
|
|
/// <summary>
|
/// 操作说明
|
/// </summary>
|
public string OperateNote { get; set; }
|
|
|
/// <summary>
|
///
|
/// </summary>
|
public RepairRequestLog Clone()
|
{
|
return (RepairRequestLog)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
|
}
|
}
|