67 lines
1.6 KiB
C#
67 lines
1.6 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
using VideoAnalysisCore.Interface;
|
|
|
|
namespace App.Model
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("FileContentMaterial")]
|
|
[Tenant("1002")]
|
|
public partial class FileContentMaterial
|
|
{
|
|
public FileContentMaterial(){
|
|
|
|
this.CreateTime =DateTime.Now;
|
|
this.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;
|
|
|
|
}
|
|
}
|