using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Entity { /// /// 报修日志 /// [SugarTable("repair_request_log")] public class RepairRequestLog:CorpEntity,System.ICloneable { /// /// /// public RepairRequestLog() { } /// /// /// public RepairRequestLog(RepairRequestLog rhs) : base(rhs) { this.FormID = rhs.FormID; this.OperateType = rhs.OperateType; this.OperateContent = rhs.OperateContent; this.OperateTime = rhs.OperateTime; this.OperateUserID = rhs.OperateUserID; this.OperateNote = rhs.OperateNote; } /// /// 表单标识 /// public long FormID { get; set; } /// /// 操作类型 /// public int OperateType { get; set; } /// /// 操作内容 /// public string OperateContent { get; set; } /// /// 操作时间 /// public DateTime OperateTime { get; set; } /// /// 操作人标识 /// public long OperateUserID { get; set; } /// /// 操作说明 /// public string OperateNote { get; set; } /// /// /// public RepairRequestLog Clone() { return (RepairRequestLog)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }