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.

68 lines
1.6 KiB
C#

1 year ago
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
1 year ago
using SOA.Persistent;
namespace IBKLinker_Minio.Entity.MinioController
{
/// <summary>
///文件关联表
/// </summary>
[Serializable, Table("MINIO_FILEASSOCIATION"), JsonObject]
1 year ago
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>
///关联文件PK
/// </summary>
[Persistent("ASSOCIATION_FILE_PK"), DisplayName("关联文件PK")]
public int AssociationFilePk { get; set; }
/// <summary>
///关联文件名称
/// </summary>
[Persistent("ASSOCIATION_FILE_NAME"), DisplayName("关联文件名称")]
public string AssorciationFileName { get; set; }
/// <summary>
///创建者
/// </summary>
[Persistent("CREATOR_USER"), DisplayName("创建者")]
public string CreatorUser { get; set; }
/// <summary>
///创建时间
/// </summary>
[Persistent("CREATOR_TIME"), DisplayName("创建时间")]
public DateTime? CreatorTime { get; set; }
}
}