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.
53 lines
1.5 KiB
C#
53 lines
1.5 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务附件表
|
|
///</summary>
|
|
[SugarTable("task_file", "任务附件表")]
|
|
public class TaskFileInfo : BaseModelV2<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 任务主键ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
|
|
public long TASK_PKID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件路径
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "文件路径", IsNullable = true, Length = 300)]
|
|
public string? FILE_PATH { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "文件类型", IsNullable = true, Length = 20)]
|
|
public string? FILE_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件名
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "文件名", IsNullable = true, Length = 100)]
|
|
public string? FILE_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件类型代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "附件类型代码", IsNullable = true, Length = 50)]
|
|
public string? FILE_CATEGORY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件类型名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "附件类型名称", IsNullable = true, Length = 100)]
|
|
public string? FILE_CATEGORY_NAME { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |