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.
33 lines
803 B
C#
33 lines
803 B
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; }
|
|
}
|
|
}
|