using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
namespace APT.BaseData.Domain.Entities
{
	/// 
	/// 图片文件  所有格式文件都转换为图片保存在此记录中
	/// 
	[IgnoreT4] public class T_PF_IMG_FILE : MesEntityBase
	{
		[Description("文件名称")]
		public string FILE_NAME { get; set; }
		[Description("文件类型")]
		public string FILE_TYPE { get; set; }
		[Description("文件ID")]
		public Guid? FILE_ID { get; set; }
		[Description("导航:文件表")]
		public virtual T_PF_FILE Nav_File { get; set; }
		/// 
		/// 文件路径 减少model 1-1时的数据联查
		/// 
		[Description("文件路径")]
		[DataFieldLength(150)]
		public string FILE_PATH { get; set; }
		/// 
		/// 明细
		/// 
		public virtual ICollection Nav_Details { get; set; }
		[Description("源ID")]
		public Guid? SRC_ID { get; set; }
	}
}