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.
42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
using DS.Module.Core.Data;
|
|
|
|
namespace DS.WMS.Core.System.Entity;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("sys_file")]
|
|
public class SysFile : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 关联业务id
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "关联业务id", IsNullable = false)]
|
|
public long LinkId { get; set; }
|
|
/// <summary>
|
|
/// 文件名称
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "文件名称", IsNullable = false, Length = 100)]
|
|
public string FileName { get; set; }
|
|
/// <summary>
|
|
/// 文件路径
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "文件路径", IsNullable = false, Length = 200)]
|
|
public string FilePath { get; set; }
|
|
/// <summary>
|
|
/// 附件类型id
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "附件类型id", IsNullable = true, Length = 100)]
|
|
public string TypeCode { get; set; }
|
|
/// <summary>
|
|
/// 附件类型
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "附件类型", IsNullable = true, Length = 100)]
|
|
public string TypeName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件模块
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "附件模块", IsNullable = true, Length = 100)]
|
|
public string Moudle { get; set; }
|
|
} |