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.
124 lines
3.2 KiB
C#
124 lines
3.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
|
|
namespace IBKLinker_Minio.Entity.MinioController
|
|
{
|
|
/// <summary>
|
|
///文件关联表
|
|
/// </summary>
|
|
[Serializable, Table("MINIO_FILEASSOCIATION"), JsonObject]
|
|
public class MinioFileassociation
|
|
{
|
|
/// <summary>
|
|
///主键
|
|
/// </summary>
|
|
[Persistent("PK", IsKey = true), DisplayName("主键")]
|
|
public int Pk { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///文件PK
|
|
/// </summary>
|
|
[Persistent("FILE_PK"), DisplayName("文件PK")]
|
|
public int FilePk { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///文件名称
|
|
/// </summary>
|
|
[Persistent("FILE_NAME"), DisplayName("文件名称")]
|
|
public string FileName { get; set; }
|
|
|
|
/// <summary>
|
|
///文件类型
|
|
/// </summary>
|
|
[Persistent("FILE_TYPE"), DisplayName("文件类型")]
|
|
public string FileType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///文件下载次数
|
|
/// </summary>
|
|
[Persistent("DOWNLOAD_NUM"), DisplayName("文件下载次数")]
|
|
public string DownloadNum { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
///文件层级
|
|
/// </summary>
|
|
[Persistent("FILE_LEVEL"), DisplayName("文件层级")]
|
|
public string FileLevel { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///文件路径
|
|
/// </summary>
|
|
[Persistent("FILE_PATH"), DisplayName("文件路径")]
|
|
public string FilePath { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///关联文件PK
|
|
/// </summary>
|
|
[Persistent("ASSOCIATION_FILE_PK"), DisplayName("关联文件PK")]
|
|
public int AssociationFilePk { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///关联文件名称
|
|
/// </summary>
|
|
[Persistent("ASSOCIATION_FILE_NAME"), DisplayName("关联文件名称")]
|
|
public string AssociationFileName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///关联文件类型
|
|
/// </summary>
|
|
[Persistent("ASSOCIATION_FILE_TYPE"), DisplayName("关联文件类型")]
|
|
public string AssociationFileType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///关联文件下载次数
|
|
/// </summary>
|
|
[Persistent("ASSOCIATION_DOWNLOAD_NUM"), DisplayName("关联文件下载次数")]
|
|
public string AssociationDownloadNum { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
///关联文件层级
|
|
/// </summary>
|
|
[Persistent("ASSOCIATION_FILE_LEVEL"), DisplayName("关联文件层级")]
|
|
public string AssociationFileLevel { get; set; }
|
|
|
|
/// <summary>
|
|
///关联文件路径
|
|
/// </summary>
|
|
[Persistent("ASSOCIATION_FILE_PATH"), DisplayName("关联文件路径")]
|
|
public string AssorciationFilePath { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///创建者
|
|
/// </summary>
|
|
[Persistent("CREATOR_USER"), DisplayName("创建者")]
|
|
public string CreatorUser { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///创建时间
|
|
/// </summary>
|
|
[Persistent("CREATOR_TIME"), DisplayName("创建时间")]
|
|
public DateTime? CreatorTime { get; set; }
|
|
|
|
|
|
}
|
|
}
|