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.
58 lines
1.4 KiB
C#
58 lines
1.4 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
|
|
namespace IBKLinker_Minio.Entity.MinioController
|
|
{
|
|
/// <summary>
|
|
///minio权限表
|
|
/// </summary>
|
|
[Serializable, Table("MINIO_AUTHORITY"), JsonObject]
|
|
public class MinioAuthority
|
|
{
|
|
/// <summary>
|
|
///唯一标识
|
|
/// </summary>
|
|
[Persistent("ID", IsKey = true), DisplayName("唯一标识")]
|
|
public int Id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///权限ID
|
|
/// </summary>
|
|
[Persistent("LIMITS_AUTHORITY_ID"), DisplayName("权限ID")]
|
|
public string LimitsAuthorityId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///文件表ID
|
|
/// </summary>
|
|
[Persistent("FILE_ID"), DisplayName("文件表ID")]
|
|
public int FileId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///创建人
|
|
/// </summary>
|
|
[Persistent("CREATOR_USER"), DisplayName("创建人")]
|
|
public string CreatorUser { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///创建时间
|
|
/// </summary>
|
|
[Persistent("CREATOR_TIME"), DisplayName("创建时间")]
|
|
public DateTime? CreatorTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///备用字段
|
|
/// </summary>
|
|
[Persistent("ALTERNATE_FIELDS"), DisplayName("备用字段")]
|
|
public string AlternateFields { get; set; }
|
|
|
|
|
|
}
|
|
}
|