You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB
C#

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