using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Application.Entity { /// /// 任务附件表 /// [SugarTable("task_file")] [Description("任务附件表")] public class TaskFileInfo: TaskManageDbEntity { /// /// 任务主键(父主键) /// public string TASK_PKID { get; set; } /// /// 文件路径 /// public string FILE_PATH { get; set; } /// /// 文件类型 /// public string FILE_TYPE { get; set; } /// /// 文件名 /// public string FILE_NAME { get; set; } /// /// 附件类型代码 BC-Booking Confirmation /// public string FILE_CATEGORY { get; set; } /// /// 附件类型名称 BC-Booking Confirmation /// public string FILE_CATEGORY_NAME { get; set; } } }