using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Entity
|
{
|
/// <summary>
|
/// 报修文件
|
/// </summary>
|
[SugarTable("inspect_record_file")]
|
public class InspectRecordFile: BaseEntity, ICloneable
|
{
|
|
|
#region MyRegion
|
|
|
/// <summary>
|
/// RecordID
|
/// </summary>
|
public long RecordID { get; set; }
|
|
/// <summary>
|
/// FileType
|
/// </summary>
|
public int FileType { get; set; }
|
|
/// <summary>
|
/// DispName
|
/// </summary>
|
public string DispName { get; set; }
|
|
/// <summary>
|
/// DataSetFile
|
/// </summary>
|
public string DataSetFile { get; set; }
|
|
/// <summary>
|
/// UploadTime
|
/// </summary>
|
public DateTime UploadTime { get; set; }
|
|
|
#endregion
|
/// <summary>
|
///
|
/// </summary>
|
public InspectRecordFile Clone()
|
{
|
return (InspectRecordFile)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|