using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceProjectSyncWin.Entities
{
[Tenant("db_master")]
[SugarTable("task_file")]
public class TaskFileEntities
{
///
/// 主键
///
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
public string PK_ID { get; set; }
///
/// 任务主键(父主键)
///
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; }
}
}