68 lines
1.5 KiB
C#
68 lines
1.5 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
|
|
namespace VideoAnalysisCore.Model.蓝鲸智库
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("FileContentMaterial")]
|
|
[Tenant("1002")]
|
|
public partial class FileContentMaterial
|
|
{
|
|
public FileContentMaterial()
|
|
{
|
|
|
|
CreateTime = DateTime.Now;
|
|
DeleteState = false;
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:文件系统内容
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:文件系统内容
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public long FileContentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:素材id
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public long MaterialId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:DateTime.Now
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:0
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public bool DeleteState { get; set; }
|
|
|
|
public int Sort { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否可以下载
|
|
/// </summary>
|
|
public bool DownState { get; set; } = false;
|
|
|
|
}
|
|
}
|