using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Entity
{
///
/// 报修文件
///
[SugarTable("repair_request_file")]
public class RepairRequestFile:CorpEntity,System.ICloneable,ISorter
{
///
///
///
public RepairRequestFile() { }
///
///
///
public RepairRequestFile(RepairRequestFile rhs) : base(rhs)
{
this.FormID = rhs.FormID;
this.FileFormat = rhs.FileFormat;
this.FileName = rhs.FileName;
this.FileSuffix = rhs.FileSuffix;
this.StorageHouse = rhs.StorageHouse;
this.StorageCode = rhs.StorageCode;
this.SortCode = rhs.SortCode;
this.Description= rhs.Description;
}
///
/// 表单标识
///
public long FormID { get; set; }
///
/// 文件格式
///
public int FileFormat { get; set; }
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 文件后缀
///
public string FileSuffix { get; set; }
///
/// 存储仓库
///
public string StorageHouse { get; set; }
///
/// 存储编码
///
public string StorageCode { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public RepairRequestFile Clone()
{
return (RepairRequestFile)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}